wok view fuse/receipt @ rev 11312

Up: xfe (1.32.4)
author Alexander Medvedev <devl547@gmail.com>
date Tue Nov 15 08:34:19 2011 +0000 (2011-11-15)
parents 6dbe4b0d6bd7
children 66fda20a39b8
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.8.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fuse Filsystem in user space."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://fuse.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="filesystem"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/dev $fs
30 cp -a $_pkg/sbin $fs
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }