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 /libarchive | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'libarchive')
-rw-r--r-- | libarchive/.footprint | 33 | ||||
-rw-r--r-- | libarchive/.md5sum | 1 | ||||
-rw-r--r-- | libarchive/Pkgfile | 17 | ||||
-rw-r--r-- | libarchive/Pkgfile.old | 26 |
4 files changed, 77 insertions, 0 deletions
diff --git a/libarchive/.footprint b/libarchive/.footprint new file mode 100644 index 0000000..64446c1 --- /dev/null +++ b/libarchive/.footprint @@ -0,0 +1,33 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/bsdcpio +-rwxr-xr-x root/root usr/bin/bsdtar +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/archive.h +-rw-r--r-- root/root usr/include/archive_entry.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libarchive.a +-rwxr-xr-x root/root usr/lib/libarchive.la +lrwxrwxrwx root/root usr/lib/libarchive.so -> libarchive.so.2.8.4 +lrwxrwxrwx root/root usr/lib/libarchive.so.2 -> libarchive.so.2.8.4 +-rwxr-xr-x root/root usr/lib/libarchive.so.2.8.4 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libarchive.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/bsdcpio.1.gz +-rw-r--r-- root/root usr/man/man1/bsdtar.1.gz +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/archive_entry.3.gz +-rw-r--r-- root/root usr/man/man3/archive_read.3.gz +-rw-r--r-- root/root usr/man/man3/archive_read_disk.3.gz +-rw-r--r-- root/root usr/man/man3/archive_util.3.gz +-rw-r--r-- root/root usr/man/man3/archive_write.3.gz +-rw-r--r-- root/root usr/man/man3/archive_write_disk.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive.3.gz +-rw-r--r-- root/root usr/man/man3/libarchive_internals.3.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/cpio.5.gz +-rw-r--r-- root/root usr/man/man5/libarchive-formats.5.gz +-rw-r--r-- root/root usr/man/man5/mtree.5.gz +-rw-r--r-- root/root usr/man/man5/tar.5.gz diff --git a/libarchive/.md5sum b/libarchive/.md5sum new file mode 100644 index 0000000..7dabc48 --- /dev/null +++ b/libarchive/.md5sum @@ -0,0 +1 @@ +83b237a542f27969a8d68ac217dc3796 libarchive-2.8.4.tar.gz diff --git a/libarchive/Pkgfile b/libarchive/Pkgfile new file mode 100644 index 0000000..cdde830 --- /dev/null +++ b/libarchive/Pkgfile @@ -0,0 +1,17 @@ +description="Library to create and read several archive formats" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://people.freebsd.org/~kientzle/libarchive/" +depends=(bzip2 xz zlib acl) + +name=libarchive +version=2.8.4 +release=1 +source=(http://libarchive.googlecode.com/files/libarchive-2.8.4.tar.gz) +build () +{ + cd libarchive-$version; + ./configure --prefix=/usr --mandir=/usr/man --without-lzmadec --without-xml2 --without-expat --without-openssl; + make; + make DESTDIR=$PKG install +} diff --git a/libarchive/Pkgfile.old b/libarchive/Pkgfile.old new file mode 100644 index 0000000..9d94567 --- /dev/null +++ b/libarchive/Pkgfile.old @@ -0,0 +1,26 @@ +# Description: Library to create and read several archive formats +# URL: http://people.freebsd.org/~kientzle/libarchive/ +# Maintainer: CRUX System Team, core-ports at crux dot nu +# Depends on: bzip2, xz, zlib, acl + +name=libarchive +version=2.8.4 +release=1 +source=(http://$name.googlecode.com/files/$name-$version.tar.gz) + +build() { + cd libarchive-$version + + # We're passing --without-lzmadec, because we want to use xz for + # LZMA support, not the obsolete lzmadec library. + # + # We're passing --without-xml2 and --without-expat to avoid linking + # to libraries which are only available in opt. XML support is only + # needed for the xar format which we can live without. + ./configure --prefix=/usr --mandir=/usr/man \ + --without-lzmadec \ + --without-xml2 --without-expat --without-openssl + + make + make DESTDIR=$PKG install +} |