wok-next annotate avfs/receipt @ rev 20495

make-slitaz-icons: fix previous commit
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 14 03:16:12 2018 +0200 (2018-03-14)
parents 380ffe05937a
children 474eb4a6385a
rev   line source
al@19810 1 # SliTaz package receipt v2.
pascal@14529 2
pascal@14529 3 PACKAGE="avfs"
pascal@14529 4 VERSION="1.0.1"
pascal@14529 5 CATEGORY="system-tools"
al@19810 6 SHORT_DESC="A virtual Filesystem implemented with FUSE"
pascal@14529 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@19810 9 WEB_SITE="http://avfs.sourceforge.net/"
al@19810 10
pascal@14529 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@14529 12 WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
pascal@14529 13
al@19810 14 BUILD_DEPENDS="gfortran fuse-dev xz-dev"
al@19810 15 SPLIT="avfs-dev"
pascal@14529 16
pascal@14529 17 # Rules to configure and make the package.
pascal@14529 18 compile_rules()
pascal@14529 19 {
pascal@14529 20 ./configure \
pascal@14529 21 --enable-fuse \
pascal@14529 22 $CONFIGURE_ARGS &&
pascal@14529 23 make &&
pascal@14529 24 make DESTDIR=$DESTDIR install
pascal@14529 25 }
pascal@14529 26
pascal@14529 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14529 28 genpkg_rules()
pascal@14529 29 {
al@19810 30 case $PACKAGE in
al@19810 31 avfs)
al@19810 32 copy @std
al@19810 33 DEPENDS="fuse liblzma"
al@19810 34 ;;
al@19810 35 *-dev)
al@19810 36 copy @dev
al@19810 37 DEPENDS="avfs xz-dev"
al@19810 38 ;;
al@19810 39 esac
pascal@14529 40 }