wok view unionfs-fuse/receipt @ rev 11407

Up: subversion to 1.7.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 10 21:12:10 2011 +0000 (2011-12-10)
parents 3f84434bc7ad
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="unionfs-fuse"
4 VERSION="0.24"
5 CATEGORY="system-tools"
6 SHORT_DESC="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 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="fuse"
9 BUILD_DEPENDS="cmake fuse-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://podgorny.cz/moin/UnionFsFuse"
12 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \
19 make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 }