wok annotate mountlo/receipt @ rev 14337

Add EXTRA_SOURCE_FILES variable to track sources files for the mirrors
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 13 19:32:46 2013 +0200 (2013-04-13)
parents b4b992b90e4a
children 380ffe05937a
rev   line source
pascal@5237 1 # SliTaz package receipt.
pascal@5237 2
pascal@5237 3 PACKAGE="mountlo"
pascal@5237 4 VERSION="0.6"
pascal@5237 5 CATEGORY="system-tools"
pascal@5237 6 SHORT_DESC="loopback filesystem mount implemented with FUSE."
pascal@5237 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@5237 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@14337 9 EXTRA_SOURCE_FILES="$PACKAGE-i386-$VERSION.tar.gz"
pascal@5237 10 WEB_SITE="http://sourceforge.net/apps/mediawiki/fuse/index.php?title=FileSystems#Mountlo"
pascal@5237 11 WGET_URL="$SF_MIRROR/fuse/$PACKAGE/$TARBALL"
pascal@5237 12 TAGS="filesystem"
pascal@5237 13
pascal@5237 14 # Rules to configure and make the package.
pascal@5237 15 compile_rules()
pascal@5237 16 {
pascal@5237 17 cd $src
pascal@5553 18 [ -f $SOURCES_REPOSITORY/$PACKAGE-i386-$VERSION.tar.gz ] ||
pascal@5553 19 wget $SF_MIRROR/fuse/$PACKAGE/$VERSION/$PACKAGE-i386-$VERSION.tar.gz \
pascal@5553 20 -P $SOURCES_REPOSITORY
pascal@5237 21 if [ ! -f mountlo-$VERSION/mountlo ]; then
pascal@5553 22 tar xzf $SOURCES_REPOSITORY/$PACKAGE-i386-$VERSION.tar.gz
pascal@5237 23 fi
pascal@5237 24 }
pascal@5237 25
pascal@5237 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5237 27 genpkg_rules()
pascal@5237 28 {
pascal@5237 29 mkdir -p $fs/usr/bin
pascal@5237 30 cp -a $src/mountlo-$VERSION/mountlo $fs/usr/bin
pascal@5238 31 chown root.root $fs/usr/bin/mountlo
pascal@5237 32 }