Date: Tuesday, February 16, 2010 @ 23:05:55 Author: dan Revision: 69080
Bump to 2.8 series Modified: libarchive/trunk/PKGBUILD ----------+ PKGBUILD | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-02-17 03:45:20 UTC (rev 69079) +++ PKGBUILD 2010-02-17 04:05:55 UTC (rev 69080) @@ -2,16 +2,15 @@ # Maintainer: Dan McGee <[email protected]> # Maintainer: Aaron Griffin <[email protected]> pkgname=libarchive -pkgver=2.7.1 +pkgver=2.8.0 pkgrel=1 pkgdesc="library that can create and read several streaming archive formats" arch=(i686 x86_64) url="http://libarchive.googlecode.com/" license=('BSD') groups=('base') -depends=('zlib' 'bzip2' 'xz-utils' 'acl' 'openssl') +depends=('zlib' 'bzip2' 'xz-utils' 'acl' 'openssl' 'expat') source=(http://libarchive.googlecode.com/files/libarchive-$pkgver.tar.gz) -sha256sums=('a7e066ef857d3db0211e2d916ca14aafc48a4776c4fa108fd67092ce862a7ba8') # 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) @@ -19,12 +18,18 @@ build() { cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/usr + ./configure --prefix=/usr --without-xml2 make || return 1 +} + +package() { + cd $startdir/src/$pkgname-$pkgver make DESTDIR=$startdir/pkg install # install license mkdir -p $startdir/pkg/usr/share/licenses/libarchive install -m644 COPYING $startdir/pkg/usr/share/licenses/libarchive/ } + +md5sums=('400fd9ba51fffe6c65c75387fffba9d9')
