wok rev 5237

Add mountlo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 10 15:01:06 2010 +0200 (2010-04-10)
parents 27a452d91f44
children 94222de071f1
files mountlo/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mountlo/receipt	Sat Apr 10 15:01:06 2010 +0200
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="mountlo"
     1.7 +VERSION="0.6"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="loopback filesystem mount implemented with FUSE."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://sourceforge.net/apps/mediawiki/fuse/index.php?title=FileSystems#Mountlo"
    1.13 +WGET_URL="$SF_MIRROR/fuse/$PACKAGE/$TARBALL"
    1.14 +TAGS="filesystem"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	cd $src
    1.20 +	if [ ! -f mountlo-$VERSION/mountlo ]; then
    1.21 +		wget $SF_MIRROR/fuse/$PACKAGE/$VERSION/$PACKAGE-i386-$VERSION.tar.gz
    1.22 +		tar xzf $PACKAGE-i386-$VERSION.tar.gz
    1.23 +	fi
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/bin
    1.30 +	cp -a $src/mountlo-$VERSION/mountlo $fs/usr/bin
    1.31 +}