
Fixed pkgbuild for unionfs-fuse
By: a guest on
Aug 25th, 2010 | syntax:
Bash | size: 0.78 KB | hits: 94 | expires: Never
# Contributor: Smith Dhumbumroong <zodmaner at gmail dot com>
pkgname=unionfs-fuse
pkgver=0.24
pkgrel=2
pkgdesc="unionfs-fuse is an effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution."
arch=('i686' 'x86_64')
url="http://podgorny.cz/moin/UnionFsFuse"
license=('custom')
makedepends=('cmake')
depends=('fuse')
source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.bz2)
md5sums=('ab00f252c55a9a7252fca13a53260bf5')
build() {
cd "$srcdir/$pkgname-$pkgver"
cmake -DCMAKE_INSTALL_PREFIX=/usr . || return 1
make || return 1
make DESTDIR="$pkgdir" install
# install license
install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}