X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/0488a6f5522c5fc3f9ec18004cc5c4005c27c101..b4470f783ac9343f89bef0ec50e691f75050ecf7:/packages/ffmpeg/build.sh diff --git a/packages/ffmpeg/build.sh b/packages/ffmpeg/build.sh index eb16e36f..43eb3e1f 100644 --- a/packages/ffmpeg/build.sh +++ b/packages/ffmpeg/build.sh @@ -1,14 +1,13 @@ TERMUX_PKG_HOMEPAGE=https://ffmpeg.org TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols" # NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg. -TERMUX_PKG_VERSION=3.2.4 +TERMUX_PKG_VERSION=3.4.1 +TERMUX_PKG_SHA256=5a77278a63741efa74e26bf197b9bb09ac6381b9757391b922407210f0f991c0 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz -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, 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_DEPENDS="libbz2, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx, libgnutls, libandroid-glob" TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples" TERMUX_PKG_CONFLICTS="libav" @@ -50,6 +49,7 @@ termux_step_configure () { --disable-symver \ --disable-lzma \ --enable-cross-compile \ + --enable-gnutls \ --enable-gpl \ --enable-libmp3lame \ --enable-libvorbis \ @@ -58,11 +58,10 @@ termux_step_configure () { --enable-libx265 \ --enable-libxvid \ --enable-libvpx \ - --enable-nonfree \ - --enable-openssl \ --enable-shared \ --prefix=$TERMUX_PREFIX \ --target-os=android \ + --extra-libs="-landroid-glob" \ $_EXTRA_CONFIGURE_FLAGS }