wok-next diff libtheora/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 5669e8b3be70
children
line diff
     1.1 --- a/libtheora/receipt	Sat Dec 22 04:52:35 2018 +0200
     1.2 +++ b/libtheora/receipt	Wed May 13 07:41:00 2020 +0100
     1.3 @@ -7,36 +7,34 @@
     1.4  MAINTAINER="devel@slitaz.org"
     1.5  LICENSE="BSD"
     1.6  WEB_SITE="https://www.theora.org/"
     1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libtheora.html"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.10  WGET_URL="http://downloads.xiph.org/releases/theora/$TARBALL"
    1.11 +TARBALL_SHA1="800aa48cf9e59d546c18ecdac1d06d7643cbb2d3"
    1.12  
    1.13  BUILD_DEPENDS="libogg-dev libvorbis-dev libpng-dev"
    1.14  SPLIT="$PACKAGE-enc $PACKAGE-dev"
    1.15  
    1.16 +COPY_std="libtheora.so.*"
    1.17 +COPY_enc="libtheoradec.so.* libtheoraenc.so.*"
    1.18 +COPY_dev="@dev *.so"
    1.19 +
    1.20 +CAT_enc="multimedia|encoding/decoding library"
    1.21 +
    1.22 +DEPENDS_std="libogg"
    1.23 +DEPENDS_enc="libogg"
    1.24 +DEPENDS_dev="$PACKAGE $PACKAGE-enc libogg-dev"
    1.25 +
    1.26 +TAGS_std="Xiph.org"
    1.27 +
    1.28  compile_rules() {
    1.29 -	sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c &&
    1.30 +	sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c
    1.31  
    1.32 -	./configure $CONFIGURE_ARGS &&
    1.33 +	./configure \
    1.34 +		--disable-static \
    1.35 +		$CONFIGURE_ARGS &&
    1.36  	fix libtool &&
    1.37  	make &&
    1.38  	make install
    1.39  }
    1.40 -
    1.41 -genpkg_rules() {
    1.42 -	case $PACKAGE in
    1.43 -		libtheora)
    1.44 -			copy libtheora.so*
    1.45 -			DEPENDS="libogg"
    1.46 -			;;
    1.47 -		*-enc)
    1.48 -			copy libtheoradec.so* libtheoraenc.so*
    1.49 -			CAT="multimedia|encoding/decoding library"
    1.50 -			DEPENDS="libogg"
    1.51 -			;;
    1.52 -		*-dev)
    1.53 -			copy @dev
    1.54 -			DEPENDS="libtheora libtheora-enc libogg-dev"
    1.55 -			;;
    1.56 -	esac
    1.57 -}