blob: 46874f6c51f660133de00d3ff51b90d2d697c2ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $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.2
pkgrel=1
pkgdesc='Virtual filesystem that allows browsing of compressed files'
arch=('x86_64' 'i686')
license=('GPL' 'LGPL')
url='http://avf.sourceforge.net/'
depends=('fuse' 'xz')
options=('!emptydirs')
source=("http://downloads.sourceforge.net/sourceforge/avf/$pkgname-$pkgver.tar.bz2")
sha256sums=('52693953e8290281d441a898040c5ac2989f11bc1fcb83ca5063c37a125a1c9a')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--enable-library \
--enable-fuse \
--disable-static
make
}
package() {
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|