X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/bb27a0ec420cb5afdba3988cbbd7d458036a4b6e..23289d81e99de8bee64e2296ea0b87be39f80fc2:/packages/libx264/build.sh diff --git a/packages/libx264/build.sh b/packages/libx264/build.sh index 97f6ff13..cb315a56 100644 --- a/packages/libx264/build.sh +++ b/packages/libx264/build.sh @@ -1,9 +1,20 @@ -TERMUX_PKG_HOMEPAGE=http://www.videolan.org/developers/x264.html +TERMUX_PKG_HOMEPAGE=https://www.videolan.org/developers/x264.html TERMUX_PKG_DESCRIPTION="Library for encoding video streams into the H.264/MPEG-4 AVC format" -TERMUX_PKG_VERSION="20160503-2245" -TERMUX_PKG_SRCURL=ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${TERMUX_PKG_VERSION}.tar.bz2 -if [ $TERMUX_ARCH = "i686" ]; then - # Avoid text relocations. Only needed on i686, see: - # https://mailman.videolan.org/pipermail/x264-devel/2016-March/011589.html - TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-asm" -fi +TERMUX_PKG_VERSION=20170122 +TERMUX_PKG_SRCURL=ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${TERMUX_PKG_VERSION}-2245-stable.tar.bz2 +TERMUX_PKG_SHA256=f833239a2ff81629242b1137c797e670516a3af7ce79e6bb7ef234a3e60fd8fd +# Avoid linking against ffmpeg libraries to avoid circular dependency: +TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" +--disable-swscale +--disable-lavf" + +termux_step_pre_configure () { + #if [ $TERMUX_ARCH = "i686" -o $TERMUX_ARCH = "x86_64" ]; then + if [ $TERMUX_ARCH = "i686" ]; then + # Avoid text relocations on i686, see: + # https://mailman.videolan.org/pipermail/x264-devel/2016-March/011589.html + TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-asm" + elif [ $TERMUX_ARCH = "x86_64" ]; then + AS=yasm + fi +}