2020-08-05 03:53:02 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# SET BUILD OPTIONS
|
|
|
|
ASM_OPTIONS=""
|
|
|
|
case ${ARCH} in
|
2023-07-17 01:59:12 +03:00
|
|
|
arm* | x86)
|
2020-11-23 00:51:45 +02:00
|
|
|
|
|
|
|
# please note that asm is disabled
|
|
|
|
# enabling asm for x86 causes text relocations in libavfilter.so
|
|
|
|
ASM_OPTIONS=" --disable-asm"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ASM_OPTIONS=" --enable-asm"
|
|
|
|
;;
|
|
|
|
esac
|
2020-08-05 03:53:02 +03:00
|
|
|
|
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_libass} -eq 1 ]]; then
|
2021-12-29 01:25:06 +02:00
|
|
|
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || 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 \
|
|
|
|
--with-sysroot="${ANDROID_SYSROOT}" \
|
|
|
|
--disable-libtool-lock \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-require-system-font-provider \
|
|
|
|
--disable-fast-install \
|
|
|
|
--disable-test \
|
|
|
|
--disable-profile \
|
|
|
|
--disable-coretext \
|
|
|
|
${ASM_OPTIONS} \
|
|
|
|
--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 ./*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|