wok view unionfs-fuse/receipt @ rev 16255

Up socat (2.0.0-b7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 04 16:24:21 2014 +0000 (2014-04-04)
parents f78140912e32
children 6135577f4d08
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 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://podgorny.cz/moin/UnionFsFuse"
11 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="cmake fuse-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }