X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/71430aa64e5287398bc8e3bd563eb9b7ecb9c493..f9fc47c910efe5e213928dfb67b4fea07b50f36e:/packages/ffmpeg/build.sh diff --git a/packages/ffmpeg/build.sh b/packages/ffmpeg/build.sh index 99c18434..f92d4c25 100644 --- a/packages/ffmpeg/build.sh +++ b/packages/ffmpeg/build.sh @@ -1,20 +1,21 @@ 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.2 +TERMUX_PKG_VERSION=3.4.2 +TERMUX_PKG_SHA256=2b92e9578ef8b3e49eeab229e69305f5f4cbc1fdaa22e927fc7fca18acccd740 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz -TERMUX_PKG_SHA256=3f01bd1fe1a17a277f8c84869e5d9192b4b978cb660872aa2b54c3cc8a2fedfc -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, libsoxr, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx, libgnutls, libandroid-glob" 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" @@ -38,6 +39,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 \ @@ -45,6 +49,7 @@ termux_step_configure () { --disable-symver \ --disable-lzma \ --enable-cross-compile \ + --enable-gnutls \ --enable-gpl \ --enable-libmp3lame \ --enable-libvorbis \ @@ -53,11 +58,11 @@ termux_step_configure () { --enable-libx265 \ --enable-libxvid \ --enable-libvpx \ - --enable-nonfree \ - --enable-openssl \ --enable-shared \ + --enable-libsoxr \ --prefix=$TERMUX_PREFIX \ --target-os=android \ + --extra-libs="-landroid-glob" \ $_EXTRA_CONFIGURE_FLAGS }