wok view fuse/receipt @ rev 1488

imlib2: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 10:55:02 2008 +0000 (2008-10-05)
parents 4615573735e2
children 3d99ecce2d4b
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.7.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fuse Filsystem in user space."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="linux-source"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --with-kernel=/usr/src/linux --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/dev $fs
28 cp -a $_pkg/sbin $fs
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 strip -s $fs/sbin/*
32 strip -s $fs/usr/bin/*
33 strip --strip-unneeded $fs/usr/lib/*.so*
34 }