2020-08-05 03:53:02 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
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_fontconfig} -eq 1 ]]; then
|
|
|
|
autoreconf_library "${LIB_NAME}"
|
2020-08-05 03:53:02 +03:00
|
|
|
fi
|
|
|
|
|
2021-09-17 15:33:40 +03:00
|
|
|
# WORKAROUND TO FIX NOT-APPLIED HAVE_POSIX_FADVISE define ON MACOS
|
|
|
|
if [[ -n ${FFMPEG_KIT_LTS_BUILD} ]]; then
|
|
|
|
${SED_INLINE} "s/(HAVE_POSIX_FADVISE)/(NO_HAVE_POSIX_FADVISE)/g" "${BASEDIR}"/src/"${LIB_NAME}"/src/fccache.c 1>>"${BASEDIR}"/build.log 2>&1 || exit 1
|
|
|
|
else
|
|
|
|
${SED_INLINE} "s/NO_HAVE_POSIX_FADVISE/HAVE_POSIX_FADVISE/g" "${BASEDIR}"/src/"${LIB_NAME}"/src/fccache.c 1>>"${BASEDIR}"/build.log 2>&1 || exit 1
|
|
|
|
fi
|
|
|
|
|
2020-08-05 03:53:02 +03:00
|
|
|
./configure \
|
2020-11-23 00:51:45 +02:00
|
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
|
|
--with-pic \
|
|
|
|
--with-libiconv-prefix="${LIB_INSTALL_BASE}"/libiconv \
|
|
|
|
--with-expat="${LIB_INSTALL_BASE}"/expat \
|
|
|
|
--without-libintl-prefix \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-fast-install \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-libxml2 \
|
|
|
|
--disable-docs \
|
|
|
|
--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
|
2021-01-10 19:46:01 +02:00
|
|
|
create_fontconfig_package_config "2.13.93" || return 1
|