# HG changeset patch # User Pascal Bellard # Date 1204935386 -3600 # Node ID f49d39ab0b56555f90dce106d1a2c44be75c8776 # Parent f02d1e043e4a04fde853e1cf4cc9b301ae6d4915 Add: funionfs diff -r f02d1e043e4a -r f49d39ab0b56 funionfs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/funionfs/receipt Sat Mar 08 01:16:26 2008 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="funionfs" +VERSION="0.4.3" +CATEGORY="system-tools" +SHORT_DESC="Union filesystem implemented with FUSE." +MAINTAINER="pascal.bellard@slitaz.org" +BUILD_DEPENDS="fuse-dev" +DEPENDS="fuse" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://funionfs.apiou.org/" +WGET_URL="${WEB_SITE}file/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --bindir=/bin \ + --libexecdir=/usr/bin --mandir=/usr/share/man \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/bin $fs +}