wok-next annotate avfs/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents b9da2b1ae771
children afd022d11fb3
rev   line source
al@19810 1 # SliTaz package receipt v2.
pascal@14529 2
pascal@14529 3 PACKAGE="avfs"
al@20946 4 VERSION="1.0.6"
pascal@14529 5 CATEGORY="system-tools"
al@20946 6 SHORT_DESC="A Virtual File System for looking into archives"
pascal@14529 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@20943 9 WEB_SITE="http://avf.sourceforge.net/"
al@19810 10
pascal@14529 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20943 12 WGET_URL="$SF_MIRROR/avf/$TARBALL"
pascal@14529 13
al@20527 14 BUILD_DEPENDS="gfortran fuse2-dev xz-dev"
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@14529 16
al@20527 17 compile_rules() {
pascal@14529 18 ./configure \
pascal@14529 19 --enable-fuse \
pascal@14529 20 $CONFIGURE_ARGS &&
al@20569 21 fix libtool &&
pascal@14529 22 make &&
al@20946 23 make install
pascal@14529 24 }
pascal@14529 25
al@20527 26 genpkg_rules() {
al@19810 27 case $PACKAGE in
al@19810 28 avfs)
al@19810 29 copy @std
al@20527 30 DEPENDS="fuse2 liblzma"
al@19810 31 ;;
al@19810 32 *-dev)
al@19810 33 copy @dev
al@19810 34 DEPENDS="avfs xz-dev"
al@19810 35 ;;
al@19810 36 esac
pascal@14529 37 }