chiark / gitweb /
2e81cd009f4a7744297bc6a1142f2b75f105ff51
[termux-packages] / packages / ffmpeg / build.sh
1 TERMUX_PKG_HOMEPAGE=https://ffmpeg.org
2 TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multimedia formats and protocols"
3 # NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg.
4 TERMUX_PKG_VERSION=3.3
5 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_SHA256=599e7f7c017221c22011c4037b88bdcd1c47cd40c1e466838bc3c465f3e9569d
7 TERMUX_PKG_FOLDERNAME=ffmpeg-$TERMUX_PKG_VERSION
8 # libbz2 is used by matroska decoder:
9 # libvpx is the VP8 & VP9 video encoder for WebM, see
10 # https://trac.ffmpeg.org/wiki/Encode/VP8 and https://trac.ffmpeg.org/wiki/Encode/VP9
11 TERMUX_PKG_DEPENDS="openssl, libbz2, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx"
12 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples"
13 TERMUX_PKG_CONFLICTS="libav"
14
15 termux_step_configure () {
16         cd $TERMUX_PKG_BUILDDIR
17
18         export ASFLAGS="-no-integrated-as"
19
20         local _EXTRA_CONFIGURE_FLAGS=""
21         if [ $TERMUX_ARCH = "arm" ]; then
22                 _ARCH="armeabi-v7a"
23                 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
24         elif [ $TERMUX_ARCH = "i686" ]; then
25                 _ARCH="x86"
26                 # Specify --disable-asm to prevent text relocations on i686,
27                 # see https://trac.ffmpeg.org/ticket/4928
28                 _EXTRA_CONFIGURE_FLAGS="--disable-asm"
29         elif [ $TERMUX_ARCH = "x86_64" ]; then
30                 _ARCH="x86_64"
31         elif [ $TERMUX_ARCH = "aarch64" ]; then
32                 _ARCH=$TERMUX_ARCH
33                 _EXTRA_CONFIGURE_FLAGS="--enable-neon"
34         else
35                 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
36         fi
37
38         # --disable-lzma to avoid problem with shared library clashes, see
39         # https://github.com/termux/termux-packages/issues/511
40         # Only used for LZMA compression support for tiff decoder.
41         $TERMUX_PKG_SRCDIR/configure \
42                 --arch=${_ARCH} \
43                 --as=$AS \
44                 --cc=$CC \
45                 --cxx=$CXX \
46                 --cross-prefix=${TERMUX_HOST_PLATFORM}- \
47                 --disable-avdevice \
48                 --disable-ffserver \
49                 --disable-static \
50                 --disable-symver \
51                 --disable-lzma \
52                 --enable-cross-compile \
53                 --enable-gpl \
54                 --enable-libmp3lame \
55                 --enable-libvorbis \
56                 --enable-libopus \
57                 --enable-libx264 \
58                 --enable-libx265 \
59                 --enable-libxvid \
60                 --enable-libvpx \
61                 --enable-nonfree \
62                 --enable-openssl \
63                 --enable-shared \
64                 --prefix=$TERMUX_PREFIX \
65                 --target-os=android \
66                 $_EXTRA_CONFIGURE_FLAGS
67 }
68