termux-packages/packages/libvpx/build.sh

46 lines
1.5 KiB
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://www.webmproject.org
TERMUX_PKG_DESCRIPTION="VP8 & VP9 Codec SDK"
2018-05-19 01:53:13 +02:00
TERMUX_PKG_VERSION=1.7.0
2018-06-26 13:29:06 +02:00
TERMUX_PKG_REVISION=1
2018-05-19 01:53:13 +02:00
TERMUX_PKG_SHA256=1fec931eb5c94279ad219a5b6e0202358e94a93a90cfb1603578c326abfc1238
2015-11-17 21:42:18 +01:00
TERMUX_PKG_SRCURL=https://github.com/webmproject/libvpx/archive/v${TERMUX_PKG_VERSION}.tar.gz
2015-06-13 01:03:31 +02:00
termux_step_configure () {
# Force fresh install of header files:
rm -Rf $TERMUX_PREFIX/include/vpx
2017-07-27 03:18:14 +02:00
export LD=$CC
2015-06-13 01:03:31 +02:00
if [ $TERMUX_ARCH = "arm" ]; then
2017-07-27 03:18:14 +02:00
export AS=$TERMUX_HOST_PLATFORM-as
2015-12-17 23:06:01 +01:00
_CONFIGURE_TARGET="--target=armv7-android-gcc"
2015-06-13 01:03:31 +02:00
elif [ $TERMUX_ARCH = "i686" ]; then
export AS=yasm
2015-12-17 23:06:01 +01:00
_CONFIGURE_TARGET="--target=x86-android-gcc"
elif [ $TERMUX_ARCH = "aarch64" ]; then
_CONFIGURE_TARGET="--force-target=arm64-v8a-android-gcc"
elif [ $TERMUX_ARCH = "x86_64" ]; then
export AS=yasm
_CONFIGURE_TARGET="--target=x86_64-android-gcc"
2015-06-13 01:03:31 +02:00
else
termux_error_exit "Unsupported arch: $TERMUX_ARCH"
2015-06-13 01:03:31 +02:00
fi
# For --disable-realtime-only, see
# https://bugs.chromium.org/p/webm/issues/detail?id=800
# "The issue is that on android we soft enable realtime only.
# [..] You can enable non-realtime by setting --disable-realtime-only"
# Discovered in https://github.com/termux/termux-packages/issues/554
2017-07-27 03:18:14 +02:00
#CROSS=${TERMUX_HOST_PLATFORM}- CC=clang CXX=clang++ $TERMUX_PKG_SRCDIR/configure \
2015-06-13 01:03:31 +02:00
$TERMUX_PKG_SRCDIR/configure \
2015-12-17 23:06:01 +01:00
$_CONFIGURE_TARGET \
2015-06-13 01:03:31 +02:00
--prefix=$TERMUX_PREFIX \
--disable-examples \
--disable-realtime-only \
2017-07-27 03:18:14 +02:00
--disable-unit-tests \
--enable-pic \
--enable-vp8 \
2015-06-13 01:03:31 +02:00
--enable-shared \
--enable-small
}