# $Id: PKGBUILD 114766 2014-07-03 23:12:50Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Kevin Piche # Contributor: K. Piche pkgname=avfs pkgver=1.0.2 pkgrel=1 pkgdesc='Virtual filesystem that allows browsing of compressed files' arch=('x86_64' 'i686') license=('GPL' 'LGPL') url='http://avf.sourceforge.net/' depends=('fuse' 'xz') options=('!emptydirs') source=("http://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2") sha256sums=('52693953e8290281d441a898040c5ac2989f11bc1fcb83ca5063c37a125a1c9a') build() { cd "$pkgname-$pkgver" ./configure --prefix=/usr \ --enable-library \ --enable-fuse \ --disable-static make } package() { make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: