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
2010-07-24 04:54:20 +08:00
pkgname = unionfs-fuse
2010-11-12 08:19:24 +08:00
pkgver = 0.24
pkgrel = 1
2010-07-24 04:54:20 +08:00
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' )
2010-07-24 04:54:20 +08:00
source = ( http://podgorny.cz/unionfs-fuse/releases/$pkgname -$pkgver .tar.bz2)
2010-11-12 08:19:24 +08:00
md5sums = ( 'ab00f252c55a9a7252fca13a53260bf5' )
2010-07-24 04:54:20 +08:00
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
2010-07-24 04:54:20 +08:00
make || return 1
2010-11-12 08:19:24 +08:00
make DESTDIR = " $pkgdir " install
2010-07-24 04:54:20 +08:00
# install license
install -Dm644 $srcdir /$pkgname -$pkgver /LICENSE $pkgdir /usr/share/licenses/$pkgname /LICENSE
}