wok view fuse2/receipt @ rev 24767

Up zbar (0.23.90)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 19 10:01:29 2022 +0000 (2022-03-19)
parents fe41217df6ed
children 92161a7a5d2e
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse2"
4 VERSION="2.9.9"
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="http://fuse.sourceforge.net/"
12 SOURCE="fuse"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://github.com/libfuse/libfuse/releases/download/$SOURCE-$VERSION/$TARBALL"
16 HOST_ARCH="i486 arm"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://raw.githubusercontent.com/libfuse/libfuse/master/ChangeLog.rst 2>/dev/null | \
22 sed '/^FUSE 2/!d;s|FUSE ||;s| .*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
39 cp -a $install/dev $fs
40 cp -a $install/sbin $fs
41 cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/lib/*.so* $fs/usr/lib
43 }