source: projects/specs/trunk/a/afio/afio-vl.spec @ 521

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

import VineSeed package specs

Line 
1Summary: Cpio-compatible archive/backup program
2Summary(ja): cpio 互換のアーカイブ/バックアッププログラム
3Name: afio
4Version: 2.5
5Release: 1%{?_dist_release}
6License: LGPL
7Group: Applications/Archiving
8Source: http://www.ibiblio.org/pub/linux/system/backup/afio-%{version}.tgz
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10Vendor: Project Vine
11Distribution: Vine Linux
12
13%description
14Afio makes cpio-format archives. It deals somewhat gracefully with
15input data corruption, supports multi-volume archives during
16interactive operation, and can make compressed archives that are
17much safer than compressed tar or cpio archives. Afio is best used
18as an `archive engine' in a backup script.
19
20%prep
21
22%setup -q
23
24%build
25make
26
27%install
28rm -rf %{buildroot}
29
30mkdir -p %{buildroot}{%{_bindir},%{_mandir}/man1}
31
32install -c -s  afio %{buildroot}%{_bindir}
33install -m 0444 afio.1 %{buildroot}%{_mandir}/man1
34
35%clean
36rm -rf %{buildroot}
37
38%files
39%defattr(-,root,root)
40%{_bindir}/afio
41%{_mandir}/man1/afio.1*
42%doc HISTORY INSTALLATION PORTING README SCRIPTS afio.lsm perl.artistic.license script1 script2 script3 script4 script5
43
44%changelog
45* Sun Sep 14 2008 Shu KONNO <owa@bg.wakwak.com> 2.5-1vl5
46- applied new versioning policy, spec in utf-8
47
48* Wed Jun 21 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.5-0vl1
49- updated to 2.5
50- s/Copyright/License/
51- added Japanese summary
52
53* Mon Apr 22 2002 K Nagasaka <nagasaka@math.tsukuba.ac.jp>
54- Vine Guideline fixes
55
56* Mon Jan 14 2002 K Nagasaka <nagasaka@math.tsukuba.ac.jp>
57- Updated to v2.4.7
58
59* Thu Apr 26 2001 JP Vossen (jp@jpsdomain.org>
60- Updated to v2.4.6
61- Added patch for double "-- compressed" tag in verify
62- Minor updates to the header section
63- Built on RH6.2, but should work fine with rebuild on 7.x (i.e. FHS)
64
65* Mon Jul 24 2000 Prospector <prospector@redhat.com>
66- rebuilt
67
68* Tue Jul 11 2000 Than Ngo <than@redhat.de>
69- FHS fixes
70
71* Mon Jul 03 2000 Prospector <bugzilla@redhat.com>
72- automatic rebuild
73
74* Fri May 19 2000 Ngo Than <than@redhat.de>
75- manpage in /usr/share/man
76- Buildroot /var/tmp
77- rebuild for powertools 7.0
78
79* Fri Nov 26 1999 Ngo Than <than@redhat.de>
80- initial RPM
Note: See TracBrowser for help on using the repository browser.