PKGBUILDs/extra/avfs/PKGBUILD

23 lines
757 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $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
}