source: projects/specs/trunk/p/proc-rpmnew/proc-rpmnew-vl.spec @ 521

Revision 521, 1.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%define pkg_version 0.2
2%define pkg_release 1%{?_dist_release}
3
4Summary:        processes .rpmnew and .rpmsave
5Summary(ja):    .rpmnewや.rpmsaveを処理します
6Name:           proc-rpmnew
7Version:        %{pkg_version}
8Release:        %{pkg_release}
9Source:         %{name}-%{version}.tar.gz
10License:        GPL2
11Group:          Applications/Administration
12URL:            http://sourceforge.jp/projects/win2linux/
13
14#Requires:
15#BuildRequires:
16
17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18BuildArch:      noarch
19
20Vendor:         Project Vine
21Distribution:   Vine Linux
22Packager:       yasumichi
23
24
25%description
26proc-rpmnew processes the file which an extension called rpmnew or rpmsave
27created at the time of upgrade of a rpm package attached.
28
29%description -l ja
30proc-rpmnewは、RPMパッケージのアップグレード時に作成されるrpmnewやrpmsaveと
31いった拡張子のファイルを処理します。
32
33
34%prep
35%setup -q
36
37
38%build
39%configure
40%{__make} %{?_smp_mflags}
41
42
43%install
44%{__rm} -rf ${RPM_BUILD_ROOT}
45%{__make} install DESTDIR=${RPM_BUILD_ROOT}
46
47
48%clean
49%{__rm} -rf ${RPM_BUILD_ROOT}
50
51
52%files
53%defattr(-,root,root)
54%doc COPYING ChangeLog NEWS README
55%{_datadir}/*
56%{_sbindir}/proc-rpmnew
57
58
59
60%changelog
61* Wed Jul 22 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.2-1%{?_dist_release}
62- initial build for Vine Linux
63
Note: See TracBrowser for help on using the repository browser.