wok-tiny view fuse/receipt @ rev 187

Add bootlife (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 04 18:58:39 2024 +0000 (3 months ago)
parents a10bae21f602
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.8.5"
5 CATEGORY="system-tools"
6 GROUP="filesystem"
7 SHORT_DESC="Fuse Filsystem in user space."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/"
11 [ -n "$TARGET" ] || TARGET="i486"
12 BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 TAGS="filesystem"
16 DEPENDS="libpthread module-fuse"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export LDFLAGS="-lpthread"
22 ./configure --prefix=/usr --host=$TARGET-pc-linux-gnu \
23 --infodir=/usr/share/info --mandir=/usr/share/man \
24 CC=uclibc-$TARGET-cc &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/dev $fs
34 cp -a $install/sbin $fs
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }