X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/7d54055e4f0697d44275e0d3085e12b4d3f47356..0488a6f5522c5fc3f9ec18004cc5c4005c27c101:/packages/ffmpeg/build.sh diff --git a/packages/ffmpeg/build.sh b/packages/ffmpeg/build.sh index 7612434b..eb16e36f 100644 --- a/packages/ffmpeg/build.sh +++ b/packages/ffmpeg/build.sh @@ -1,19 +1,22 @@ -TERMUX_PKG_HOMEPAGE=https://www.ffmpeg.org/ +TERMUX_PKG_HOMEPAGE=https://ffmpeg.org TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols" -TERMUX_PKG_VERSION=3.2 +# NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg. +TERMUX_PKG_VERSION=3.2.4 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz -TERMUX_PKG_SHA256=88f70c1b8cab108f494ecbab5ba302cdb35d59a84cea88008b5fe49be068d5da +TERMUX_PKG_SHA256=6e38ff14f080c98b58cf5967573501b8cb586e3a173b591f3807d8f0660daf7a TERMUX_PKG_FOLDERNAME=ffmpeg-$TERMUX_PKG_VERSION # libbz2 is used by matroska decoder: -# libvpx is the VP8 & VP9 video encoder for ​WebM, an open, royalty-free media file format. -# see https://trac.ffmpeg.org/wiki/Encode/VP8 and https://trac.ffmpeg.org/wiki/Encode/VP9 -TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, xvidcore, libvorbis, libmp3lame, libopus, libvpx" +# libvpx is the VP8 & VP9 video encoder for WebM, see +# https://trac.ffmpeg.org/wiki/Encode/VP8 and https://trac.ffmpeg.org/wiki/Encode/VP9 +TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx" TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples" TERMUX_PKG_CONFLICTS="libav" termux_step_configure () { cd $TERMUX_PKG_BUILDDIR + export ASFLAGS="-no-integrated-as" + local _EXTRA_CONFIGURE_FLAGS="" if [ $TERMUX_ARCH = "arm" ]; then _ARCH="armeabi-v7a" @@ -29,8 +32,7 @@ termux_step_configure () { _ARCH=$TERMUX_ARCH _EXTRA_CONFIGURE_FLAGS="--enable-neon" else - echo "Unsupported arch $TERMUX_ARCH" - exit 1 + termux_error_exit "Unsupported arch: $TERMUX_ARCH" fi # --disable-lzma to avoid problem with shared library clashes, see @@ -38,6 +40,9 @@ termux_step_configure () { # Only used for LZMA compression support for tiff decoder. $TERMUX_PKG_SRCDIR/configure \ --arch=${_ARCH} \ + --as=$AS \ + --cc=$CC \ + --cxx=$CXX \ --cross-prefix=${TERMUX_HOST_PLATFORM}- \ --disable-avdevice \ --disable-ffserver \ @@ -50,6 +55,7 @@ termux_step_configure () { --enable-libvorbis \ --enable-libopus \ --enable-libx264 \ + --enable-libx265 \ --enable-libxvid \ --enable-libvpx \ --enable-nonfree \