From 4d1a1e4699ac12a1464511315826101355f43499 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 30 Jun 2019 03:21:17 +0300 Subject: [PATCH] ffmpeg: add support for libass Requested in https://github.com/termux/termux-packages/issues/2399. --- packages/ffmpeg/build.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/ffmpeg/build.sh b/packages/ffmpeg/build.sh index 7b0163ec1..0a4443a43 100644 --- a/packages/ffmpeg/build.sh +++ b/packages/ffmpeg/build.sh @@ -3,10 +3,10 @@ TERMUX_PKG_DESCRIPTION="Tools and libraries to manipulate a wide range of multim TERMUX_PKG_LICENSE="GPL-3.0" # NOTE: mpv has to be rebuilt and version bumped after updating ffmpeg. TERMUX_PKG_VERSION=4.1.3 -TERMUX_PKG_REVISION=4 -TERMUX_PKG_SHA256=0c3020452880581a8face91595b239198078645e7d7184273b8bcc7758beb63d +TERMUX_PKG_REVISION=5 TERMUX_PKG_SRCURL=https://www.ffmpeg.org/releases/ffmpeg-${TERMUX_PKG_VERSION}.tar.xz -TERMUX_PKG_DEPENDS="libbz2, libiconv, libsoxr, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx, libgnutls, libandroid-glob, freetype, zlib, liblzma" +TERMUX_PKG_SHA256=0c3020452880581a8face91595b239198078645e7d7184273b8bcc7758beb63d +TERMUX_PKG_DEPENDS="libass, libbz2, libiconv, libsoxr, libx264, libx265, xvidcore, libvorbis, libmp3lame, libopus, libvpx, libgnutls, libandroid-glob, freetype, zlib, liblzma" TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="share/ffmpeg/examples" TERMUX_PKG_CONFLICTS="libav" @@ -47,6 +47,7 @@ termux_step_configure() { --enable-cross-compile \ --enable-gnutls \ --enable-gpl \ + --enable-libass \ --enable-libmp3lame \ --enable-libfreetype \ --enable-libvorbis \