diff options
Diffstat (limited to 'libarchive/Pkgfile')
-rw-r--r-- | libarchive/Pkgfile | 17 |
1 files changed, 17 insertions, 0 deletions
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 +} |