wok view avfs/receipt @ rev 14924

Up: firefox-langpack-zh_TW (17.0.7esr)
author Richard Dunbar <mojo@slitaz.org>
date Tue Aug 06 01:30:32 2013 +0000 (2013-08-06)
parents
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="avfs"
4 VERSION="1.0.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="A virtual Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://avfs.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
12 DEPENDS="fuse liblzma"
13 BUILD_DEPENDS="fuse-dev liblzma-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --enable-fuse \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/usr/lib/avfs $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }