wok view avfs/receipt @ rev 21136

link cream with libjpeg-9c
author Hans-G?nter Theisgen
date Thu Mar 21 16:56:04 2019 +0100 (2019-03-21)
parents 60b0868741df
children b2dc64e8a80b
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 }