# HG changeset patch # User Hans-G?nter Theisgen # Date 1579709191 -3600 # Node ID 98b83f586ee5c9290984687e614463eeebb69acd # Parent a91e008889b7189cf6cb3c6af6a6b70c5ed25d62 updated ffmpeg-compat and ffmpeg-compat-dev (0.10.12 -> 4.1.3) diff -r a91e008889b7 -r 98b83f586ee5 ffmpeg-compat-dev/receipt --- a/ffmpeg-compat-dev/receipt Wed Jan 22 16:28:29 2020 +0100 +++ b/ffmpeg-compat-dev/receipt Wed Jan 22 17:06:31 2020 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="ffmpeg-compat-dev" -VERSION="0.10.12" +VERSION="4.1.3" CATEGORY="development" -SHORT_DESC="Devel files for ffmpeg-compat (used to build enna)" +SHORT_DESC="Development files for ffmpeg-compat (used to build enna)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1" -WEB_SITE="http://ffmpeg.org/" +WEB_SITE="https://ffmpeg.org/" + WANTED="ffmpeg-compat" + HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/include $fs/usr + cp -a $install/usr/include $fs/usr } diff -r a91e008889b7 -r 98b83f586ee5 ffmpeg-compat/receipt --- a/ffmpeg-compat/receipt Wed Jan 22 16:28:29 2020 +0100 +++ b/ffmpeg-compat/receipt Wed Jan 22 17:06:31 2020 +0100 @@ -1,21 +1,23 @@ # SliTaz package receipt. PACKAGE="ffmpeg-compat" -VERSION="0.10.12" +VERSION="4.1.3" CATEGORY="multimedia" SHORT_DESC="Record, convert and stream audio and video (compatible libs version)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1" -WEB_SITE="http://ffmpeg.org/" +WEB_SITE="https://ffmpeg.org/" + SOURCE="ffmpeg" TARBALL="$SOURCE-$VERSION.tar.bz2" WGET_URL="${WEB_SITE}releases/$TARBALL" + +DEPENDS="alsa-lib bzip2 libsdl" +BUILD_DEPENDS="bzip2-dev coreutils-file-format coreutils-file-special + libsdl-dev yasm zlib-dev" + HOST_ARCH="i486 arm" -DEPENDS="alsa-lib libsdl bzip2" -BUILD_DEPENDS="libsdl-dev zlib-dev bzip2-dev coreutils-file-format \ -coreutils-file-special yasm" - # Handle cross compilation. Host coreutils-file-* are used case "$ARCH" in i?86) @@ -34,38 +36,39 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - --incdir=/usr/include/ffmpeg-compat \ - --libdir=/usr/lib/ffmpeg-compat \ - --shlibdir=/usr/lib/ffmpeg-compat \ - --enable-shared \ - --enable-gpl \ - --enable-runtime-cpudetect \ - --enable-pthreads \ - --enable-small \ - --disable-static \ - --disable-ffprobe \ - --disable-ffserver \ - --disable-ffplay \ - --disable-encoder=h263 \ - --disable-encoder=h263p \ - --disable-encoder=mpeg2video \ - --disable-encoder=mpeg4 \ - --disable-encoder=msmpeg4v1 \ - --disable-encoder=msmpeg4v2 \ - --disable-encoder=msmpeg4v3 \ - --disable-symver \ - --disable-debug \ - --disable-doc ${ARCH_ARGS} && - make && make install + ./configure \ + --prefix=/usr \ + --incdir=/usr/include/ffmpeg-compat \ + --libdir=/usr/lib/ffmpeg-compat \ + --shlibdir=/usr/lib/ffmpeg-compat \ + --enable-gpl \ + --enable-pthreads \ + --enable-runtime-cpudetect \ + --enable-shared \ + --enable-small \ + --disable-debug \ + --disable-doc \ + --disable-encoder=h263 \ + --disable-encoder=h263p \ + --disable-encoder=mpeg2video \ + --disable-encoder=mpeg4 \ + --disable-encoder=msmpeg4v1 \ + --disable-encoder=msmpeg4v2 \ + --disable-encoder=msmpeg4v3 \ + --disable-ffplay \ + --disable-ffprobe \ + --disable-static \ + --disable-symver \ + ${ARCH_ARGS} && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/ffmpeg-compat $fs/usr/lib + cp -a $install/usr/lib/ffmpeg-compat $fs/usr/lib } post_install()