wok annotate funionfs/receipt @ rev 893

tazlito: include tazlitobox in the package
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 10 01:24:16 2008 +0200 (2008-06-10)
parents
children 5d5fa3f27a35
rev   line source
pascal@368 1 # SliTaz package receipt.
pascal@368 2
pascal@368 3 PACKAGE="funionfs"
pascal@368 4 VERSION="0.4.3"
pascal@368 5 CATEGORY="system-tools"
pascal@368 6 SHORT_DESC="Union filesystem implemented with FUSE."
pascal@368 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@368 8 BUILD_DEPENDS="fuse-dev"
pascal@368 9 DEPENDS="fuse"
pascal@368 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@368 11 WEB_SITE="http://funionfs.apiou.org/"
pascal@368 12 WGET_URL="${WEB_SITE}file/$TARBALL"
pascal@368 13
pascal@368 14 # Rules to configure and make the package.
pascal@368 15 compile_rules()
pascal@368 16 {
pascal@368 17 cd $src
pascal@368 18 ./configure --prefix=/usr --bindir=/bin \
pascal@368 19 --libexecdir=/usr/bin --mandir=/usr/share/man \
pascal@368 20 $CONFIGURE_ARGS
pascal@368 21 make
pascal@368 22 make DESTDIR=$PWD/_pkg install
pascal@368 23 }
pascal@368 24
pascal@368 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@368 26 genpkg_rules()
pascal@368 27 {
pascal@368 28 cp -a $_pkg/bin $fs
pascal@368 29 }