Date: Friday, July 4, 2014 @ 01:08:51 Author: arodseth Revision: 114765
New version Modified: avfs/trunk/PKGBUILD ----------+ PKGBUILD | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-07-03 21:00:14 UTC (rev 114764) +++ PKGBUILD 2014-07-03 23:08:51 UTC (rev 114765) @@ -1,22 +1,23 @@ # $Id$ -# Maintainer: Kevin Piche <[email protected]> +# Maintainer: Alexander Rødseth <[email protected]> +# Contributor: Kevin Piche <[email protected]> # Contributor: K. Piche <[email protected]> pkgname=avfs -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 -pkgdesc="A virtual filesystem that allows browsing of compressed files" -arch=('i686' 'x86_64') +pkgdesc='Virtual filesystem that allows browsing of compressed files' +arch=('x86_64' 'i686') license=('GPL' 'LGPL') -url="http://avf.sourceforge.net/" -depends=('fuse' 'xz' 'perl') +url='http://avf.sourceforge.net/' +depends=('fuse' 'xz') options=('!emptydirs') -source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2{,.asc}) -md5sums=('f0f254d092e54da14bbf3ea22b76da99' - 'd71607de21819f3d67246473f0bc21f3') +source=("http://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2") +sha256sums=('52693953e8290281d441a898040c5ac2989f11bc1fcb83ca5063c37a125a1c9a') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$pkgname-$pkgver" + ./configure --prefix=/usr \ --enable-library \ --enable-fuse \ @@ -25,7 +26,7 @@ } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install +} - make DESTDIR="${pkgdir}" install -} +# vim:set ts=2 sw=2 et:
