summaryrefslogtreecommitdiffstats
path: root/cpio/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'cpio/Pkgfile')
-rw-r--r--cpio/Pkgfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/cpio/Pkgfile b/cpio/Pkgfile
new file mode 100644
index 0000000..059d7e8
--- /dev/null
+++ b/cpio/Pkgfile
@@ -0,0 +1,19 @@
+description="A tool to copy files into or out of a cpio or tar archive"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://www.gnu.org/software/cpio/"
+depends=()
+
+name=cpio
+version=2.11
+release=1
+source=(http://ftp.gnu.org/gnu/cpio/cpio-2.11.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ ./configure --prefix=/usr --mandir=/usr/man --disable-nls;
+ make;
+ make DESTDIR=$PKG install;
+ rm -r $PKG/usr/{share,libexec};
+ rm $PKG/usr/man/man1/mt.1
+}