wok view afuse/receipt @ rev 22809

brasero: add icons
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 30 09:57:32 2020 +0100 (2020-01-30)
parents 294cf8a66d39
children b569b85b0fb9
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/ $install/usr/share/doc
32 cp -a $install/usr/bin $fs/usr/
33 cp $src/README $src/AUTHORS $install/usr/share/doc
34 }