2020-08-05 03:53:02 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# ALWAYS CLEAN THE PREVIOUS BUILD
|
|
|
|
make distclean 2>/dev/null 1>/dev/null
|
2020-08-05 03:53:02 +03:00
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# REGENERATE BUILD FILES IF NECESSARY OR REQUESTED
|
|
|
|
if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libvorbis} -eq 1 ]]; then
|
2020-08-05 03:53:02 +03:00
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# -mno-ieee-fp OPTION IS NOT COMPATIBLE WITH clang. REMOVING IT
|
|
|
|
${SED_INLINE} 's/\-mno-ieee-fp//g' "${BASEDIR}"/src/"${LIB_NAME}"/configure.ac || return 1
|
2020-08-05 03:53:02 +03:00
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
autoreconf_library "${LIB_NAME}"
|
2020-08-05 03:53:02 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
PKG_CONFIG= ./configure \
|
2020-11-23 00:51:45 +02:00
|
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
|
|
--with-pic \
|
|
|
|
--with-sysroot="${ANDROID_SYSROOT}" \
|
|
|
|
--with-ogg-includes="${LIB_INSTALL_BASE}"/libogg/include \
|
|
|
|
--with-ogg-libraries="${LIB_INSTALL_BASE}"/libogg/lib \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-fast-install \
|
|
|
|
--disable-docs \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-oggtest \
|
|
|
|
--host="${HOST}" || return 1
|
|
|
|
|
|
|
|
make -j$(get_cpu_count) || return 1
|
|
|
|
|
|
|
|
make install || return 1
|
2020-08-05 03:53:02 +03:00
|
|
|
|
|
|
|
# CREATE PACKAGE CONFIG MANUALLY
|
2020-11-23 00:51:45 +02:00
|
|
|
create_libvorbis_package_config "1.3.7" || return 1
|