summaryrefslogtreecommitdiff
path: root/community/avfs
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-28 00:05:59 -0800
committerroot <root@rshg054.dnsready.net>2013-01-28 00:05:59 -0800
commit1b9f6dc846379470b620b5dbb9d4d7acd1de148c (patch)
tree2305b950a3c94970b05c1a38af473f5cca95af02 /community/avfs
parentb9b96ada56ad38df20b1e528a095a1e86ab67a2b (diff)
Mon Jan 28 00:05:59 PST 2013
Diffstat (limited to 'community/avfs')
-rw-r--r--community/avfs/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/avfs/PKGBUILD b/community/avfs/PKGBUILD
new file mode 100644
index 000000000..962021782
--- /dev/null
+++ b/community/avfs/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 83120 2013-01-27 15:51:39Z pierre $
+# Maintainer: Kevin Piche <kevin@archlinux.org>
+# Contributor: K. Piche <kpiche@rogers.com>
+
+pkgname=avfs
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="A virtual filesystem that allows browsing of compressed files"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+url="http://avf.sourceforge.net/"
+depends=('fuse' 'xz' 'perl')
+options=('!emptydirs' '!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('f0f254d092e54da14bbf3ea22b76da99'
+ 'd71607de21819f3d67246473f0bc21f3')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr \
+ --enable-library \
+ --enable-fuse \
+ --disable-static
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}