ffmpeg-kit/scripts/android/libtheora.sh

43 lines
1.1 KiB
Bash
Raw Normal View History

2020-08-05 03:53:02 +03:00
#!/bin/bash
2020-11-23 00:51:45 +02:00
# SET BUILD OPTIONS
if [[ -z ${FFMPEG_KIT_LTS_BUILD} ]]; then
ASM_OPTIONS="--enable-asm"
else
ASM_OPTIONS="--disable-asm"
2020-08-05 03:53:02 +03:00
fi
2020-11-23 00:51:45 +02:00
# ALWAYS CLEAN THE PREVIOUS BUILD
2020-08-05 03:53:02 +03:00
make distclean 2>/dev/null 1>/dev/null
2020-11-23 00:51:45 +02:00
# REGENERATE BUILD FILES IF NECESSARY OR REQUESTED
if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libtheora} -eq 1 ]]; then
2020-08-05 03:53:02 +03:00
2020-11-23 00:51:45 +02:00
# WORKAROUND NOT TO RUN CONFIGURE AT THE END OF autogen.sh
2021-01-28 01:52:32 +02:00
${SED_INLINE} 's/$srcdir\/configure/#$srcdir\/configure/g' "${BASEDIR}"/src/"${LIB_NAME}"/autogen.sh || return 1
2020-11-23 00:51:45 +02:00
./autogen.sh || return 1
2020-08-05 03:53:02 +03:00
fi
./configure \
2020-11-23 00:51:45 +02:00
--prefix="${LIB_INSTALL_PREFIX}" \
--with-pic \
--enable-static \
--disable-shared \
--disable-fast-install \
--disable-examples \
--disable-telemetry \
--disable-sdltest \
${ASM_OPTIONS} \
--disable-valgrind-testing \
--host="${HOST}" || return 1
make -j$(get_cpu_count) || return 1
make install || return 1
2020-08-05 03:53:02 +03:00
# MANUALLY COPY PKG-CONFIG FILES
2020-11-23 00:51:45 +02:00
cp theoradec.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
cp theoraenc.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
cp theora.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1