mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
757 B
Bash
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
|
|
}
|