summaryrefslogtreecommitdiff
path: root/community/avfs/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/avfs/PKGBUILD')
-rw-r--r--community/avfs/PKGBUILD29
1 files changed, 15 insertions, 14 deletions
diff --git a/community/avfs/PKGBUILD b/community/avfs/PKGBUILD
index f9cdb2670..46874f6c5 100644
--- a/community/avfs/PKGBUILD
+++ b/community/avfs/PKGBUILD
@@ -1,22 +1,23 @@
-# $Id: PKGBUILD 99689 2013-10-30 23:02:31Z allan $
-# Maintainer: Kevin Piche <kevin@archlinux.org>
+# $Id: PKGBUILD 114766 2014-07-03 23:12:50Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: K. Piche <kpiche@rogers.com>
pkgname=avfs
-pkgver=1.0.1
+pkgver=1.0.2
pkgrel=1
-pkgdesc="A virtual filesystem that allows browsing of compressed files"
-arch=('i686' 'x86_64')
+pkgdesc='Virtual filesystem that allows browsing of compressed files'
+arch=('x86_64' 'i686')
license=('GPL' 'LGPL')
-url="http://avf.sourceforge.net/"
-depends=('fuse' 'xz' 'perl')
+url='http://avf.sourceforge.net/'
+depends=('fuse' 'xz')
options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2{,.asc})
-md5sums=('f0f254d092e54da14bbf3ea22b76da99'
- 'd71607de21819f3d67246473f0bc21f3')
+source=("http://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2")
+sha256sums=('52693953e8290281d441a898040c5ac2989f11bc1fcb83ca5063c37a125a1c9a')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "$pkgname-$pkgver"
+
./configure --prefix=/usr \
--enable-library \
--enable-fuse \
@@ -25,7 +26,7 @@ build() {
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
+ make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}
+
+# vim:set ts=2 sw=2 et: