wok-next view fuse2/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 0e7893ac206d
children d958fec46c9f
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 fix libtool &&
24 make &&
25 make install || return 1
27 rm -rf $install/etc/init.d
28 # -> fuse-common
29 rm -rf $install/etc/udev
30 rm $install/usr/bin/mount.fuse
31 # handled by udev
32 rm -rf $install/dev
34 cook_pick_docs doc/how-fuse-works doc/kernel.txt
35 }
37 genpkg_rules() {
38 case $PACKAGE in
39 fuse2)
40 copy @std
41 DEPENDS="fuse-common"
42 PROVIDE="fuse"
43 TAGS="filesystem"
44 ;;
45 *-dev)
46 copy @dev
47 PROVIDE="fuse-dev"
48 ;;
49 esac
50 }