wok annotate fuse/receipt @ rev 13915

Add xpaint (thanks mojo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 25 10:03:15 2013 +0100 (2013-01-25)
parents 02bbaa9d12ba
children 380ffe05937a
rev   line source
pankso@34 1 # SliTaz package receipt.
pankso@34 2
pankso@34 3 PACKAGE="fuse"
slaxemulator@13077 4 VERSION="2.8.7"
pankso@202 5 CATEGORY="system-tools"
pankso@34 6 SHORT_DESC="Fuse Filsystem in user space."
pankso@34 7 MAINTAINER="pankso@slitaz.org"
pankso@34 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@34 9 WEB_SITE="http://fuse.sourceforge.net/"
pankso@34 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@4936 11 TAGS="filesystem"
pankso@34 12
pankso@34 13 # Rules to configure and make the package.
pankso@34 14 compile_rules()
pankso@34 15 {
pankso@34 16 cd $src
pankso@34 17 ./configure --prefix=/usr --infodir=/usr/share/info \
slaxemulator@13077 18 --mandir=/usr/share/man \
slaxemulator@13077 19 $CONFIGURE_ARGS &&
pascal@1443 20 make &&
slaxemulator@13077 21 make DESTDIR=$DESTDIR install
pankso@34 22 }
pankso@34 23
pankso@34 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@34 25 genpkg_rules()
pankso@34 26 {
pankso@34 27 mkdir -p $fs/usr/lib
pankso@34 28 cp -a $_pkg/dev $fs
pankso@34 29 cp -a $_pkg/sbin $fs
pankso@34 30 cp -a $_pkg/usr/bin $fs/usr
pankso@34 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@34 32 }
pankso@34 33