2020-08-05 03:53:02 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# ENABLE COMMON FUNCTIONS
|
2020-10-28 23:03:24 +02:00
|
|
|
source "${BASEDIR}"/scripts/function-${FFMPEG_KIT_BUILD_TYPE}.sh
|
2020-08-05 03:53:02 +03:00
|
|
|
|
|
|
|
# PREPARE PATHS & DEFINE ${INSTALL_PKG_CONFIG_DIR}
|
|
|
|
LIB_NAME="libilbc"
|
|
|
|
set_toolchain_paths ${LIB_NAME}
|
|
|
|
|
2020-10-28 23:03:24 +02:00
|
|
|
# SET BUILD FLAGS
|
2020-08-05 03:53:02 +03:00
|
|
|
BUILD_HOST=$(get_build_host)
|
|
|
|
export CFLAGS=$(get_cflags ${LIB_NAME})
|
|
|
|
export CXXFLAGS=$(get_cxxflags ${LIB_NAME})
|
|
|
|
export LDFLAGS=$(get_ldflags ${LIB_NAME})
|
|
|
|
|
|
|
|
cd ${BASEDIR}/src/${LIB_NAME} || exit 1
|
|
|
|
|
|
|
|
make distclean 2>/dev/null 1>/dev/null
|
|
|
|
|
|
|
|
# RECONFIGURE IF REQUESTED
|
|
|
|
if [[ ${RECONF_libilbc} -eq 1 ]]; then
|
|
|
|
autoreconf_library ${LIB_NAME}
|
|
|
|
fi
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=${BASEDIR}/prebuilt/android-$(get_target_build)/${LIB_NAME} \
|
|
|
|
--with-pic \
|
|
|
|
--with-sysroot=${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/${TOOLCHAIN}/sysroot \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-fast-install \
|
|
|
|
--host=${BUILD_HOST} || exit 1
|
|
|
|
|
|
|
|
make -j$(get_cpu_count) || exit 1
|
|
|
|
|
|
|
|
# MANUALLY COPY PKG-CONFIG FILES
|
|
|
|
cp ./libilbc.pc ${INSTALL_PKG_CONFIG_DIR} || exit 1
|
|
|
|
|
|
|
|
make install || exit 1
|