picolisp: Update from 17.7.9 to 17.8.7
[termux-packages] / packages / libvpx / build.sh
CommitLineData
43d77177 1TERMUX_PKG_HOMEPAGE=https://www.webmproject.org
56862a32 2TERMUX_PKG_DESCRIPTION="VP8 & VP9 Codec SDK"
4f081a78 3TERMUX_PKG_VERSION=1.6.1
d946e67c 4TERMUX_PKG_REVISION=1
e58281b9 5TERMUX_PKG_SRCURL=https://github.com/webmproject/libvpx/archive/v${TERMUX_PKG_VERSION}.tar.gz
4f081a78 6TERMUX_PKG_SHA256=cda8bb6f0e4848c018177d3a576fa83ed96d762554d7010fe4cfb9d70c22e588
e58281b9 7TERMUX_PKG_FOLDERNAME=libvpx-${TERMUX_PKG_VERSION}
59f0d218
FF
8
9termux_step_configure () {
43d77177
FF
10 # Force fresh install of header files:
11 rm -Rf $TERMUX_PREFIX/include/vpx
12
afcbe85e
FF
13 export LD=$CC
14
59f0d218 15 if [ $TERMUX_ARCH = "arm" ]; then
afcbe85e 16 export AS=$TERMUX_HOST_PLATFORM-as
dd15f7cf 17 _CONFIGURE_TARGET="--target=armv7-android-gcc"
59f0d218
FF
18 elif [ $TERMUX_ARCH = "i686" ]; then
19 export AS=yasm
dd15f7cf
FF
20 _CONFIGURE_TARGET="--target=x86-android-gcc"
21 elif [ $TERMUX_ARCH = "aarch64" ]; then
22 _CONFIGURE_TARGET="--force-target=arm64-v8a-android-gcc"
23 elif [ $TERMUX_ARCH = "x86_64" ]; then
24 export AS=yasm
dd15f7cf 25 _CONFIGURE_TARGET="--target=x86_64-android-gcc"
59f0d218 26 else
71430aa6 27 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
59f0d218 28 fi
9f04f4c4
FF
29
30 # For --disable-realtime-only, see
31 # https://bugs.chromium.org/p/webm/issues/detail?id=800
32 # "The issue is that on android we soft enable realtime only.
33 # [..] You can enable non-realtime by setting --disable-realtime-only"
34 # Discovered in https://github.com/termux/termux-packages/issues/554
afcbe85e 35 #CROSS=${TERMUX_HOST_PLATFORM}- CC=clang CXX=clang++ $TERMUX_PKG_SRCDIR/configure \
59f0d218 36 $TERMUX_PKG_SRCDIR/configure \
dd15f7cf 37 $_CONFIGURE_TARGET \
59f0d218
FF
38 --prefix=$TERMUX_PREFIX \
39 --disable-examples \
9f04f4c4 40 --disable-realtime-only \
afcbe85e
FF
41 --disable-unit-tests \
42 --enable-pic \
56862a32 43 --enable-vp8 \
59f0d218
FF
44 --enable-shared \
45 --enable-small
46}