wok view fuse/receipt @ rev 24580

updated fuse and fuse-dev (2.9.9 -> 3.10.5)
author Hans-G?nter Theisgen
date Sun Feb 27 16:54:07 2022 +0100 (2022-02-27)
parents 5ea0ce1cecc0
children 8b705f9aa129
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="3.10.5"
5 CATEGORY="system-tools"
6 TAGS="filesystem"
7 SHORT_DESC="Fuse Filsystem in user space."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/libfuse/libfuse"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$WEB_SITE/releases/download/$PACKAGE-$VERSION/$TARBALL"
15 DEPENDS="gcc83-lib-base"
16 BUILD_DEPENDS="gcc83 meson ninja udev-dev"
18 HOST_ARCH="i486 arm"
20 current_version()
21 {
22 wget -O - ${WGET_URL%/down*} 2>/dev/null | \
23 sed '/archive.*tar/!d;s|.*/fuse-\(.*\).tar.*|\1|;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 export CC=gcc-83
30 export CXX=g++-83
32 mkdir _build
33 cd _build
34 meson .. \
35 --prefix=/usr &&
36 ninja &&
37 ninja install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 cook_copy_folders dev
44 cook_copy_folders bin
45 cp -a $install/usr/sbin $fs
46 cook_copy_files *.so*
47 }