wok-next diff afpfs-ng/receipt @ rev 21543

updated ccid (1.4.30 -> 1.4.32)
author Hans-G?nter Theisgen
date Sun Jun 21 17:20:25 2020 +0100 (2020-06-21)
parents 0e09a7ca6ab6
children
line diff
     1.1 --- a/afpfs-ng/receipt	Sat May 26 15:44:46 2018 +0300
     1.2 +++ b/afpfs-ng/receipt	Sun Jun 21 17:20:25 2020 +0100
     1.3 @@ -1,35 +1,35 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="afpfs-ng"
     1.7 -VERSION="0.8.1"
     1.8 +VERSION="0.8.2.postgit20150729"
     1.9 +COMMIT="f6e24eb"
    1.10  CATEGORY="system-tools"
    1.11  SHORT_DESC="Client for the Apple Filing Protocol (AFP)"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="https://sites.google.com/site/alexthepuffin/"
    1.15 +WEB_SITE="https://github.com/simonvetter/afpfs-ng"
    1.16  
    1.17 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.19 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.20 +WGET_URL="https://github.com/simonvetter/afpfs-ng/archive/$COMMIT.tar.gz"
    1.21  
    1.22 -BUILD_DEPENDS="automake libtool gfortran libgcrypt-dev readline-dev gmp-dev \
    1.23 -fuse2-dev libgpg-error-dev"
    1.24 -SPLIT="afpfs-ng-dev"
    1.25 +# Latest version 0.8.1 is on SourceForge.
    1.26 +# Github version isn't tagged as 0.8.2, but "0.8.2" mentioned in the initial
    1.27 +# commit message.
    1.28 +
    1.29 +BUILD_DEPENDS="gfortran libgcrypt-dev fuse2-dev readline-dev"
    1.30  
    1.31  compile_rules() {
    1.32 -	autoreconf -fi
    1.33 -
    1.34 -	./configure $CONFIGURE_ARGS &&
    1.35 +	./configure \
    1.36 +		--disable-static \
    1.37 +		$CONFIGURE_ARGS &&
    1.38  	fix libtool &&
    1.39  	make &&
    1.40 -	make install
    1.41 +	make install || return 1
    1.42 +
    1.43 +	cook_pick_docs AUTHORS ChangeLog NEWS README.md
    1.44  }
    1.45  
    1.46  genpkg_rules() {
    1.47 -	case $PACKAGE in
    1.48 -		afpfs-ng)
    1.49 -			copy @std
    1.50 -			DEPENDS="fuse2 libgcrypt readline"
    1.51 -			;;
    1.52 -		*-dev) copy @dev;;
    1.53 -	esac
    1.54 +	copy @std
    1.55 +	DEPENDS="fuse2 libgcrypt readline"
    1.56  }