diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /cpio | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'cpio')
-rw-r--r-- | cpio/.footprint | 6 | ||||
-rw-r--r-- | cpio/.md5sum | 1 | ||||
-rw-r--r-- | cpio/Pkgfile | 19 | ||||
-rw-r--r-- | cpio/Pkgfile.old | 19 |
4 files changed, 45 insertions, 0 deletions
diff --git a/cpio/.footprint b/cpio/.footprint new file mode 100644 index 0000000..635fa76 --- /dev/null +++ b/cpio/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/cpio +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/cpio.1.gz diff --git a/cpio/.md5sum b/cpio/.md5sum new file mode 100644 index 0000000..fa55cfa --- /dev/null +++ b/cpio/.md5sum @@ -0,0 +1 @@ +20fc912915c629e809f80b96b2e75d7d cpio-2.11.tar.bz2 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 +} diff --git a/cpio/Pkgfile.old b/cpio/Pkgfile.old new file mode 100644 index 0000000..cae5a65 --- /dev/null +++ b/cpio/Pkgfile.old @@ -0,0 +1,19 @@ +# Description: A tool to copy files into or out of a cpio or tar archive +# URL: http://www.gnu.org/software/cpio/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=cpio +version=2.11 +release=1 +source=(http://ftp.gnu.org/gnu/$name/$name-$version.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 +} |