# $Id: PKGBUILD 5444 2008-07-16 01:29:27Z dan $ # Maintainer: Dan McGee # Maintainer: Aaron Griffin pkgname=libarchive pkgver=2.5.5 pkgrel=10 pkgdesc="library that can create and read several streaming archive formats" arch=(i686 x86_64) url="http://people.freebsd.org/~kientzle/libarchive/" license=('BSD') groups=('base') depends=('zlib' 'bzip2' 'acl') source=(http://people.freebsd.org/~kientzle/libarchive/src/libarchive-$pkgver.tar.gz) md5sums=('ff6387de3a3830785b229d1e1f11f523') # pacman.static build fails unless we keep the libtool files (or unless we link # the missing symbols inside the libarchive .a static lib, but that is dirty) options=(libtool) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr make || return 1 make DESTDIR=$startdir/pkg install # install license mkdir -p $startdir/pkg/usr/share/licenses/libarchive install -m644 COPYING $startdir/pkg/usr/share/licenses/libarchive/ }