updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / fusecompress / PKGBUILD
bloba11fde2e466a99d0c1fea65094a0670f0d892482
1 # Contributor: Anton Bazhenov <anton.bazhenov at gmail>
2 # Contributor: Paulo Freire <paulofreire gmail com>
4 pkgname=fusecompress
5 pkgver=2.6
6 pkgrel=2
7 pkgdesc="A mountable Linux file system which transparently compress its content"
8 arch=('i686' 'x86_64')
9 url="http://miio.net/wordpress/projects/fusecompress/"
10 license=('GPL')
11 depends=('fuse' 'file' 'boost' 'zlib' 'bzip2' 'xz-utils' 'lzo2')
12 source=(http://github.com/tex/$pkgname/tarball/$pkgver
13         $pkgname.patch)
14 md5sums=('fd63042ad54003ca7e01a89f0d58e4f3'
15          'ac0f34c7ec05b84a3ebb18a9e8339f2c')
17 build() {
18   cd "$srcdir"/tex-$pkgname-4e07d3f
19   patch -Np0 -i ../$pkgname.patch || return 1
20   ./configure \
21     --prefix=/usr \
22     --with-lzma \
23     --with-z \
24     --with-bz2 \
25     --with-lzo2 || return 1
26   make || return 1
27   make DESTDIR="$pkgdir" install || return 1