summaryrefslogtreecommitdiff
path: root/extra/avfs/PKGBUILD
blob: 288312c7a89cc4c0fddf0f64fd1a50931a7afc73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: PKGBUILD 104091 2010-12-28 18:22:31Z kevin $
# Maintainer: Kevin Piche <kevin@archlinux.org>
# Contributor: K. Piche <kpiche@rogers.com>

pkgname=avfs
pkgver=0.9.9
pkgrel=1
pkgdesc="A virtual filesystem which enables programs to look inside archived or compressed files, or access remote files"
arch=(i686 x86_64 'mips64el')
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=('3e0df074188a6c4ed9df082f61cc6bf4')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --prefix=/usr --enable-library --enable-fuse --disable-static
  make
  make DESTDIR="${pkgdir}" install
}