wok view avfs/receipt @ rev 20729

updated avfs (1.0.1 -> 1.0.6)
author Hans-G?nter Theisgen
date Sat Feb 09 15:27:48 2019 +0100 (2019-02-09)
parents 6e8b1bcb30e2
children 0e0f59b97f93
line source
1 # SliTaz package receipt.
3 PACKAGE="avfs"
4 VERSION="1.0.6"
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="http://avf.sourceforge.net/"
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 cd $src
21 ./configure \
22 --prefix=/usr \
23 --enable-fuse \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 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 }