core/unionfs-fuse/PKGBUILD

34 lines
1.1 KiB
Bash
Raw Normal View History

2010-11-12 08:19:24 +08:00
#
# 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
2010-11-12 08:19:24 +08:00
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')
2010-11-12 08:19:24 +08:00
makedepends=('cmake')
source=(http://podgorny.cz/unionfs-fuse/releases/$pkgname-$pkgver.tar.bz2)
2010-11-12 08:19:24 +08:00
md5sums=('ab00f252c55a9a7252fca13a53260bf5')
build() {
mkdir -p $pkgdir/usr/sbin
mkdir -p $pkgdir/usr/share/man/man8
cd "$srcdir/$pkgname-$pkgver"
2010-11-12 08:19:24 +08:00
cmake -DCMAKE_INSTALL_PREFIX=/usr . || return 1
make || return 1
2010-11-12 08:19:24 +08:00
make DESTDIR="$pkgdir" install
# install license
install -Dm644 $srcdir/$pkgname-$pkgver/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}