wok view avfs/receipt @ rev 22570

modified recipe for bluez-alsa
author Hans-G?nter Theisgen
date Mon Jan 06 08:00:18 2020 +0100 (2020-01-06)
parents 0e0f59b97f93
children f1922233bc3a
line source
1 # SliTaz package receipt.
3 PACKAGE="avfs"
4 VERSION="1.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A virtual Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/avf/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="fuse liblzma"
15 BUILD_DEPENDS="fuse-dev liblzma-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --enable-fuse \
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/lib
33 cp -a $install/usr/bin $fs/usr
34 # cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/lib/avfs $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }