wok rev 22719

updated ffmpeg-compat and ffmpeg-compat-dev (0.10.12 -> 4.1.3)
author Hans-G?nter Theisgen
date Wed Jan 22 17:06:31 2020 +0100 (2020-01-22)
parents a91e008889b7
children 0bd1d2cc2359
files ffmpeg-compat-dev/receipt ffmpeg-compat/receipt
line diff
     1.1 --- a/ffmpeg-compat-dev/receipt	Wed Jan 22 16:28:29 2020 +0100
     1.2 +++ b/ffmpeg-compat-dev/receipt	Wed Jan 22 17:06:31 2020 +0100
     1.3 @@ -1,18 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ffmpeg-compat-dev"
     1.7 -VERSION="0.10.12"
     1.8 +VERSION="4.1.3"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Devel files for ffmpeg-compat (used to build enna)"
    1.11 +SHORT_DESC="Development files for ffmpeg-compat (used to build enna)."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2 LGPL2.1"
    1.14 -WEB_SITE="http://ffmpeg.org/"
    1.15 +WEB_SITE="https://ffmpeg.org/"
    1.16 +
    1.17  WANTED="ffmpeg-compat"
    1.18 +
    1.19  HOST_ARCH="i486 arm"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 +	cp -a $install/usr/include	$fs/usr
    1.27  }
     2.1 --- a/ffmpeg-compat/receipt	Wed Jan 22 16:28:29 2020 +0100
     2.2 +++ b/ffmpeg-compat/receipt	Wed Jan 22 17:06:31 2020 +0100
     2.3 @@ -1,21 +1,23 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="ffmpeg-compat"
     2.7 -VERSION="0.10.12"
     2.8 +VERSION="4.1.3"
     2.9  CATEGORY="multimedia"
    2.10  SHORT_DESC="Record, convert and stream audio and video (compatible libs version)."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL2 LGPL2.1"
    2.13 -WEB_SITE="http://ffmpeg.org/"
    2.14 +WEB_SITE="https://ffmpeg.org/"
    2.15 +
    2.16  SOURCE="ffmpeg"
    2.17  TARBALL="$SOURCE-$VERSION.tar.bz2"
    2.18  WGET_URL="${WEB_SITE}releases/$TARBALL"
    2.19 +
    2.20 +DEPENDS="alsa-lib bzip2 libsdl"
    2.21 +BUILD_DEPENDS="bzip2-dev coreutils-file-format coreutils-file-special 
    2.22 +	libsdl-dev yasm zlib-dev"
    2.23 +
    2.24  HOST_ARCH="i486 arm"
    2.25  
    2.26 -DEPENDS="alsa-lib libsdl bzip2"
    2.27 -BUILD_DEPENDS="libsdl-dev zlib-dev bzip2-dev coreutils-file-format \
    2.28 -coreutils-file-special yasm"
    2.29 -
    2.30  # Handle cross compilation. Host coreutils-file-* are used
    2.31  case "$ARCH" in
    2.32  	i?86) 
    2.33 @@ -34,38 +36,39 @@
    2.34  # Rules to configure and make the package.
    2.35  compile_rules()
    2.36  {
    2.37 -	./configure \
    2.38 -		--prefix=/usr \
    2.39 -		--incdir=/usr/include/ffmpeg-compat \
    2.40 -		--libdir=/usr/lib/ffmpeg-compat \
    2.41 -		--shlibdir=/usr/lib/ffmpeg-compat \
    2.42 -		--enable-shared \
    2.43 -		--enable-gpl \
    2.44 -		--enable-runtime-cpudetect \
    2.45 -		--enable-pthreads \
    2.46 -		--enable-small \
    2.47 -		--disable-static \
    2.48 -		--disable-ffprobe \
    2.49 -		--disable-ffserver \
    2.50 -		--disable-ffplay \
    2.51 -		--disable-encoder=h263 \
    2.52 -		--disable-encoder=h263p \
    2.53 -		--disable-encoder=mpeg2video \
    2.54 -		--disable-encoder=mpeg4 \
    2.55 -		--disable-encoder=msmpeg4v1 \
    2.56 -		--disable-encoder=msmpeg4v2 \
    2.57 -		--disable-encoder=msmpeg4v3 \
    2.58 -		--disable-symver \
    2.59 -		--disable-debug \
    2.60 -		--disable-doc ${ARCH_ARGS} &&
    2.61 -	make && make install
    2.62 +	./configure					\
    2.63 +		--prefix=/usr				\
    2.64 +		--incdir=/usr/include/ffmpeg-compat	\
    2.65 +		--libdir=/usr/lib/ffmpeg-compat		\
    2.66 +		--shlibdir=/usr/lib/ffmpeg-compat	\
    2.67 +		--enable-gpl				\
    2.68 +		--enable-pthreads			\
    2.69 +		--enable-runtime-cpudetect		\
    2.70 +		--enable-shared				\
    2.71 +		--enable-small				\
    2.72 +		--disable-debug				\
    2.73 +		--disable-doc				\
    2.74 +		--disable-encoder=h263			\
    2.75 +		--disable-encoder=h263p			\
    2.76 +		--disable-encoder=mpeg2video		\
    2.77 +		--disable-encoder=mpeg4			\
    2.78 +		--disable-encoder=msmpeg4v1		\
    2.79 +		--disable-encoder=msmpeg4v2		\
    2.80 +		--disable-encoder=msmpeg4v3		\
    2.81 +		--disable-ffplay			\
    2.82 +		--disable-ffprobe			\
    2.83 +		--disable-static			\
    2.84 +		--disable-symver			\
    2.85 +		${ARCH_ARGS} &&
    2.86 +	make &&
    2.87 +	make install
    2.88  }
    2.89  
    2.90  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.91  genpkg_rules()
    2.92  {
    2.93  	mkdir -p $fs/usr/lib
    2.94 -	cp -a $install/usr/lib/ffmpeg-compat $fs/usr/lib
    2.95 +	cp -a $install/usr/lib/ffmpeg-compat	$fs/usr/lib
    2.96  }
    2.97  
    2.98  post_install()