70 lines
2.2 KiB
Bash
Raw Normal View History

2016-11-30 12:47:03 -05:00
TERMUX_PKG_HOMEPAGE=https://ffmpeg.org
2015-12-10 06:57:56 -05:00
TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols"
2019-01-20 23:39:59 +02:00
TERMUX_PKG_LICENSE="GPL-3.0"
2016-11-30 12:47:03 -05:00
# NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg.
2019-03-24 23:59:42 +01:00
TERMUX_PKG_VERSION=4.1.2
TERMUX_PKG_SHA256=b95f0ae44798ab1434155ac7f81f30a7e9760a02282e4b5898372c22a335347b
2016-05-03 07:45:59 -04:00
TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz
2015-12-10 06:57:56 -05:00
# libbz2 is used by matroska decoder:
2016-11-26 12:55:26 -05:00
# 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="libbz2, libsoxr, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx, libgnutls, libandroid-glob, freetype"
2015-12-10 06:57:56 -05:00
TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples"
2015-12-13 15:06:51 -05:00
TERMUX_PKG_CONFLICTS="libav"
2015-12-10 06:57:56 -05:00
termux_step_configure() {
2015-12-10 06:57:56 -05:00
cd $TERMUX_PKG_BUILDDIR
2017-02-12 23:12:29 +01:00
export ASFLAGS="-no-integrated-as"
local _EXTRA_CONFIGURE_FLAGS=""
2015-12-10 06:57:56 -05:00
if [ $TERMUX_ARCH = "arm" ]; then
_ARCH="armeabi-v7a"
_EXTRA_CONFIGURE_FLAGS="--enable-neon"
2015-12-10 06:57:56 -05:00
elif [ $TERMUX_ARCH = "i686" ]; then
_ARCH="x86"
# Specify --disable-asm to prevent text relocations on i686,
# see https://trac.ffmpeg.org/ticket/4928
_EXTRA_CONFIGURE_FLAGS="--disable-asm"
2016-06-17 16:50:36 -04:00
elif [ $TERMUX_ARCH = "x86_64" ]; then
_ARCH="x86_64"
elif [ $TERMUX_ARCH = "aarch64" ]; then
2015-12-10 06:57:56 -05:00
_ARCH=$TERMUX_ARCH
_EXTRA_CONFIGURE_FLAGS="--enable-neon"
else
termux_error_exit "Unsupported arch: $TERMUX_ARCH"
2015-12-10 06:57:56 -05:00
fi
# --disable-lzma to avoid problem with shared library clashes, see
# https://github.com/termux/termux-packages/issues/511
# Only used for LZMA compression support for tiff decoder.
2015-12-10 06:57:56 -05:00
$TERMUX_PKG_SRCDIR/configure \
--arch=${_ARCH} \
2017-02-12 23:12:29 +01:00
--as=$AS \
--cc=$CC \
--cxx=$CXX \
2015-12-10 06:57:56 -05:00
--cross-prefix=${TERMUX_HOST_PLATFORM}- \
--disable-avdevice \
2015-12-10 06:57:56 -05:00
--disable-static \
--disable-symver \
--disable-lzma \
2015-12-10 06:57:56 -05:00
--enable-cross-compile \
2017-06-16 22:26:48 +02:00
--enable-gnutls \
2015-12-10 06:57:56 -05:00
--enable-gpl \
--enable-libmp3lame \
--enable-libfreetype \
2015-12-10 06:57:56 -05:00
--enable-libvorbis \
--enable-libopus \
2015-12-10 06:57:56 -05:00
--enable-libx264 \
--enable-libx265 \
2015-12-10 06:57:56 -05:00
--enable-libxvid \
--enable-libvpx \
2015-12-10 06:57:56 -05:00
--enable-shared \
--enable-libsoxr \
2015-12-10 06:57:56 -05:00
--prefix=$TERMUX_PREFIX \
2016-08-27 12:15:14 -04:00
--target-os=android \
2017-10-27 23:28:43 +03:00
--extra-libs="-landroid-glob" \
$_EXTRA_CONFIGURE_FLAGS
2015-12-10 06:57:56 -05:00
}