diff --git a/README.md b/README.md index 0334ba7..8596e51 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # pax +'pax' is the POSIX standard archive tool. +It supports the two most common forms of standard Unix archive (backup) files - CPIO and TAR. + diff --git a/pax.spec b/pax.spec new file mode 100644 index 0000000..3d438c2 --- /dev/null +++ b/pax.spec @@ -0,0 +1,51 @@ +Name: pax +Version: 3.4 +Release: 3mamba +Summary: POSIX File System Archiver +Group: Applications/Archiving +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: ftp://ftp.suse.com/pub/people/kukuk/pax/ +Source: ftp://ftp.suse.com/pub/people/kukuk/pax/pax-%{version}.tar.bz2 +License: BSD +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +'pax' is the POSIX standard archive tool. +It supports the two most common forms of standard Unix archive (backup) files - CPIO and TAR. + +%prep +%setup -q + +%build +%configure \ + CFLAGS="-Wno-unused-but-set-parameter" + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/pax +%{_mandir}/man1/pax.* +%doc AUTHORS COPYING ChangeLog NEWS README THANKS + +%changelog +* Sun Oct 20 2013 Automatic Build System 3.4-3mamba +- automatic rebuild by autodist + +* Tue Nov 13 2007 Aleph0 3.4-2mamba +- rebuilt + +* Tue Jun 20 2006 Stefano Cotta Ramusino 3.4-1qilnx +- update to version 3.4 by autospec + +* Fri Apr 08 2005 Davide Madrisan 3.2-1qilnx +- package created by autospec