core/unionfs-fuse/PKGBUILD
2010-11-12 00:19:24 +00:00

34 lines
1.1 KiB
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=unionfs-fuse
pkgver=0.24
pkgrel=1
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')
depends=('fuse')
makedepends=('cmake')
source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.bz2)
md5sums=('ab00f252c55a9a7252fca13a53260bf5')
build() {
mkdir -p $pkgdir/usr/sbin
mkdir -p $pkgdir/usr/share/man/man8
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
}