wok-tiny view fuse/receipt @ rev 173

Fix ctorrent-dnh & tfttest
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 14 09:04:04 2021 +0000 (2021-07-14)
parents
children 1e55ea7da8de
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="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://fuse.sourceforge.net/"
10 [ -n "$TARGET" ] || TARGET="i486"
11 BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="filesystem"
15 DEPENDS="libpthread module-fuse"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export LDFLAGS="-lpthread"
21 ./configure --prefix=/usr --host=$TARGET-pc-linux-gnu \
22 --infodir=/usr/share/info --mandir=/usr/share/man \
23 CC=uclibc-$TARGET-cc &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/dev $fs
33 cp -a $install/sbin $fs
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }