wok-4.x view fuse/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (14 months ago)
parents 02bbaa9d12ba
children
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 WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/f/$TARBALL"
12 TAGS="filesystem"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # support for new glibc 2.19
20 patch -p1 < $stuff/fuse-2.8.5-clone-_GNU_SOURCE.patch
22 ./configure --prefix=/usr --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg 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 $_pkg/dev $fs
34 cp -a $_pkg/sbin $fs
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 }