wok view fuse/receipt @ rev 5344

Updated fuse to 2.8.4. I removed the need in have to compile the kernel for fuse to be compiled. (Fuse is in the kenrel). Added fuse-dev to SUGEGSTED so fuse-dev can be same version/build as fuse.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Apr 27 23:41:13 2010 +0000 (2010-04-27)
parents fb8aceda65ff
children 4460b40c15d8
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.8.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fuse Filsystem in user space."
7 MAINTAINER="pankso@slitaz.org"
8 SUGGESTED="fuse-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="filesystem"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/dev $fs
31 cp -a $_pkg/sbin $fs
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 strip -s $fs/sbin/*
35 strip -s $fs/usr/bin/*
36 strip --strip-unneeded $fs/usr/lib/*.so*
37 }