Switch https->http for ftp.videolan.org
[termux-packages] / packages / libx264 / build.sh
CommitLineData
75198e14 1TERMUX_PKG_HOMEPAGE=https://www.videolan.org/developers/x264.html
59f0d218 2TERMUX_PKG_DESCRIPTION="Library for encoding video streams into the H.264/MPEG-4 AVC format"
0277197f 3TERMUX_PKG_VERSION=20170714
a19b500c 4TERMUX_PKG_SRCURL=http://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${TERMUX_PKG_VERSION}-2245-stable.tar.bz2
0277197f 5TERMUX_PKG_SHA256=5ac659849dbf11935a236910730768b7efca6d61e967dbefbb62b5f8108ac033
51c63a87 6# Avoid linking against ffmpeg libraries to avoid circular dependency:
b6c7cb34 7TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
51c63a87
FF
8--disable-swscale
9--disable-lavf"
e67edd51
FF
10
11termux_step_pre_configure () {
75198e14
FF
12 #if [ $TERMUX_ARCH = "i686" -o $TERMUX_ARCH = "x86_64" ]; then
13 if [ $TERMUX_ARCH = "i686" ]; then
14 # Avoid text relocations on i686, see:
e67edd51 15 # https://mailman.videolan.org/pipermail/x264-devel/2016-March/011589.html
51c63a87 16 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-asm"
75198e14
FF
17 elif [ $TERMUX_ARCH = "x86_64" ]; then
18 AS=yasm
e67edd51
FF
19 fi
20}