wok-next diff libvorbis/receipt @ rev 21622

updated elfkickers (3.0 -> 3.1a)
author Hans-G?nter Theisgen
date Thu Jun 25 14:35:46 2020 +0100 (2020-06-25)
parents d5aab818505e
children
line diff
     1.1 --- a/libvorbis/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/libvorbis/receipt	Thu Jun 25 14:35:46 2020 +0100
     1.3 @@ -7,29 +7,27 @@
     1.4  MAINTAINER="devel@slitaz.org"
     1.5  LICENSE="other"
     1.6  WEB_SITE="https://www.xiph.org/"
     1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libvorbis.html"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
    1.11 +TARBALL_SHA1="91f140c220d1fe3376d637dc5f3d046263784b1f"
    1.12  
    1.13  BUILD_DEPENDS="libogg-dev"
    1.14 -SPLIT="$PACKAGE-dev"
    1.15 +SPLIT="$PACKAGE-dev $PACKAGE"
    1.16 +
    1.17 +COPY_dev="@dev *.so"
    1.18 +
    1.19 +DEPENDS_std="libogg"
    1.20 +DEPENDS_dev="$PACKAGE libogg-dev"
    1.21 +
    1.22 +TAGS_std="Xiph.org"
    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 -		libvorbis)
    1.37 -			copy @std
    1.38 -			DEPENDS="libogg"
    1.39 -			;;
    1.40 -		*-dev)
    1.41 -			copy @dev
    1.42 -			DEPENDS="libvorbis libogg-dev"
    1.43 -			;;
    1.44 -	esac
    1.45 -}