wok-next diff libbytesize/receipt @ rev 21657

updated flac (1.3.2 -> 1.3.3)
author Hans-G?nter Theisgen
date Sat Jun 27 10:17:52 2020 +0100 (2020-06-27)
parents d5aab818505e
children
line diff
     1.1 --- a/libbytesize/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/libbytesize/receipt	Sat Jun 27 10:17:52 2020 +0100
     1.3 @@ -11,9 +11,19 @@
     1.4  
     1.5  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.6  WGET_URL="https://github.com/storaged-project/libbytesize/releases/download/$VERSION/$TARBALL"
     1.7 +TARBALL_SHA1="ef29982499abeeeeffc71cfa500eea15ab64ceb5"
     1.8  
     1.9  BUILD_DEPENDS="gettext-dev gmp-dev mpfr-dev pcre-dev"
    1.10 -SPLIT="$PACKAGE-python $PACKAGE $PACKAGE-dev"
    1.11 +SPLIT="$PACKAGE-python $PACKAGE-dev $PACKAGE"
    1.12 +
    1.13 +COPY_python="python2*/"
    1.14 +COPY_dev="@dev *.so"
    1.15 +
    1.16 +CAT_python="libs|Python2 bindings"
    1.17 +
    1.18 +DEPENDS_python="$PACKAGE python"
    1.19 +DEPENDS_std="gmp libpcre mpfr"
    1.20 +DEPENDS_dev="$PACKAGE $PACKAGE-python gmp-dev mpfr-dev"
    1.21  
    1.22  compile_rules() {
    1.23  	./configure $CONFIGURE_ARGS &&
    1.24 @@ -21,22 +31,3 @@
    1.25  	make &&
    1.26  	make install
    1.27  }
    1.28 -
    1.29 -genpkg_rules() {
    1.30 -	case $PACKAGE in
    1.31 -		*-python)
    1.32 -			copy *.py
    1.33 -			DEPENDS="libbytesize python"
    1.34 -			CAT="libs|python bindings"
    1.35 -			;;
    1.36 -		libbytesize)
    1.37 -			copy @std @rm
    1.38 -			DEPENDS="gmp libpcre mpfr"
    1.39 -			;;
    1.40 -		*-dev)
    1.41 -			copy @dev
    1.42 -			DEPENDS="libbytesize libbytesize-python \
    1.43 -			gmp-dev mpfr-dev"
    1.44 -			;;
    1.45 -	esac
    1.46 -}