wok view unionfs-fuse/receipt @ rev 10487

plotdrop: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 13:02:59 2011 +0200 (2011-05-25)
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 }