updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / unionfs-fuse / PKGBUILD
blobc358ee2a14435016c86bc22585e10f30cbd52b3a
1 # Contributor: Smith Dhumbumroong <zodmaner at gmail dot com>
3 pkgname=unionfs-fuse
4 pkgver=0.24
5 pkgrel=2
6 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."
7 arch=('i686' 'x86_64')
8 url="http://podgorny.cz/moin/UnionFsFuse"
9 license=('custom')
10 depends=('fuse')
11 makedepends=('cmake')
12 source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.bz2)
13 md5sums=('ab00f252c55a9a7252fca13a53260bf5')
15 build() {
16     cd "$srcdir/$pkgname-$pkgver"
17     cmake -DCMAKE_INSTALL_PREFIX=/usr . || return 1
19     make || return 1
20     make DESTDIR="$pkgdir" install
21     # install license
22     install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE