PKGBUILDs/extra/avfs/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
757 B
Bash

# $Id: PKGBUILD 49934 2009-08-16 21:58:34Z jgc $
# 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=(i686 x86_64)
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
}