wok-next view fuse2/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents 79820d8299f4
children 835b3b8ce6ac
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fuse2"
4 VERSION="2.9.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="FUSE Filsystem in Userspace, compatible with GVFS"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/libfuse/libfuse"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/postlfs/fuse2.html"
12 TARBALL="fuse-$VERSION.tar.gz"
13 WGET_URL="https://github.com/libfuse/libfuse/releases/download/fuse-$VERSION/$TARBALL"
15 BUILD_DEPENDS="util-linux-mount"
16 SPLIT="fuse2-dev"
18 compile_rules() {
19 export MOUNT_FUSE_PATH=/usr/bin
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install || return 1
26 rm -rf $install/etc/init.d
27 # -> fuse-common
28 rm -rf $install/etc/udev
29 rm $install/usr/bin/mount.fuse
30 # handled by udev
31 rm -rf $install/dev
33 cook_pick_docs doc/how-fuse-works doc/kernel.txt
34 }
36 genpkg_rules() {
37 case $PACKAGE in
38 fuse2)
39 copy @std
40 DEPENDS="fuse-common"
41 PROVIDE="fuse"
42 TAGS="filesystem"
43 ;;
44 *-dev)
45 copy @dev
46 PROVIDE="fuse-dev"
47 ;;
48 esac
49 }