wok-next diff opusfile/receipt @ rev 21671

updated gawk (4.2.1 -> 5.1.0)
author Hans-G?nter Theisgen
date Sat Jun 27 21:38:06 2020 +0100 (2020-06-27)
parents d5aab818505e
children
line diff
     1.1 --- a/opusfile/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/opusfile/receipt	Sat Jun 27 21:38:06 2020 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="opusfile"
     1.7 -VERSION="0.10"
     1.8 +VERSION="0.11"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Library for opening, seeking, and decoding .opus files"
    1.11  MAINTAINER="al.bobylev@gmail.com"
    1.12 @@ -10,26 +10,19 @@
    1.13  
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15  WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL"
    1.16 +TARBALL_SHA1="fc3bf2a73be16836a16d9e55ff1097de3835dce3"
    1.17  
    1.18  BUILD_DEPENDS="openssl-dev libogg-dev opus-dev"
    1.19  SPLIT="$PACKAGE-dev"
    1.20  
    1.21 +DEPENDS_std="libogg openssl opus"
    1.22 +DEPENDS_dev="$PACKAGE libogg-dev openssl-dev opus-dev"
    1.23 +
    1.24  compile_rules() {
    1.25 -	./configure $CONFIGURE_ARGS &&
    1.26 +	./configure \
    1.27 +		--disable-static \
    1.28 +		$CONFIGURE_ARGS &&
    1.29  	fix libtool &&
    1.30  	make &&
    1.31  	make install
    1.32  }
    1.33 -
    1.34 -genpkg_rules() {
    1.35 -	case $PACKAGE in
    1.36 -		opusfile)
    1.37 -			copy @std
    1.38 -			DEPENDS="libogg openssl opus"
    1.39 -			;;
    1.40 -		*-dev)
    1.41 -			copy @dev
    1.42 -			DEPENDS="opusfile libogg-dev openssl-dev opus-dev"
    1.43 -			;;
    1.44 -	esac
    1.45 -}