wok view afuse/receipt @ rev 21097

Add afuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 18 11:50:02 2019 +0100 (2019-03-18)
parents
children ca81ff4a83e8
line source
1 # SliTaz package receipt.
3 PACKAGE="afuse"
4 VERSION="0.4.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="An automounter implemented with FUSE"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/pcarrier/afuse/"
11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="fuse-dev perl-getopt-long autoconf automake libtool "
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoreconf --install --verbose
20 sed -i 's|v -V -qversion|v|' configure
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/
32 cp $install/usr/bin $fs/usr/
33 }