PKGBUILDs/extra/avfs/PKGBUILD
2009-10-18 22:17:58 -05:00

21 lines
702 B
Bash

# Maintainer: Kevin Piche <kevin@archlinux.org>
# Contributor: K. Piche <kpiche@rogers.com>
pkgname=avfs
pkgver=0.9.8
pkgrel=2
pkgdesc="A virtual filesystem which enables programs to look inside archived or compressed files, or access remote files"
arch=('arm')
license=('GPL')
url="http://avf.sourceforge.net/"
source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2)
options=(!emptydirs !libtool)
depends=('fuse' 'sh')
md5sums=('5281b990251c8c3a15366ad40e4818db')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --enable-library --enable-fuse --disable-static || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}