#!/bin/bash # ALWAYS CLEAN THE PREVIOUS BUILD make distclean 2>/dev/null 1>/dev/null # REGENERATE BUILD FILES IF NECESSARY OR REQUESTED if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_tiff} -eq 1 ]] || [[ $(is_gnu_config_files_up_to_date) == "0" ]]; then # UPDATE CONFIG FILES TO SUPPORT APPLE ARCHITECTURES overwrite_file "${FFMPEG_KIT_TMPDIR}"/source/config/config.guess "${BASEDIR}"/src/"${LIB_NAME}"/config.guess || return 1 overwrite_file "${FFMPEG_KIT_TMPDIR}"/source/config/config.sub "${BASEDIR}"/src/"${LIB_NAME}"/config.sub || return 1 autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || exit 1 fi ./configure \ --prefix="${LIB_INSTALL_PREFIX}" \ --with-pic \ --with-sysroot="${SDK_PATH}" \ --with-jpeg-include-dir="${LIB_INSTALL_BASE}"/jpeg/include \ --with-jpeg-lib-dir="${LIB_INSTALL_BASE}"/jpeg/lib \ --enable-static \ --disable-shared \ --disable-fast-install \ --disable-maintainer-mode \ --disable-cxx \ --disable-win32-io \ --disable-lzma \ --host="${HOST}" || return 1 make -j$(get_cpu_count) || return 1 make install || return 1 # MANUALLY COPY PKG-CONFIG FILES cp ./*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1