# HG changeset patch # User Christopher Rogers # Date 1299071312 0 # Node ID 3f84434bc7ad9355f950049dfdfab49407c3d387 # Parent b137ba93894d84439de0258acd9bb3e17041ce5e Add unionfs-fuse. diff -r b137ba93894d -r 3f84434bc7ad unionfs-fuse/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unionfs-fuse/receipt Wed Mar 02 13:08:32 2011 +0000 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="unionfs-fuse" +VERSION="0.24" +CATEGORY="system-tools" +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." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="fuse" +BUILD_DEPENDS="cmake" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://podgorny.cz/moin/UnionFsFuse" +WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + cmake -DCMAKE_INSTALL_PREFIX=/usr . && \ + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +