...
This commit is contained in:
Executable
+54
@@ -0,0 +1,54 @@
|
||||
#!/bin/bash
|
||||
|
||||
# SET BUILD OPTIONS
|
||||
ASM_OPTIONS=""
|
||||
case ${ARCH} in
|
||||
arm*)
|
||||
ASM_OPTIONS="--enable-neon --enable-neon-rtcd"
|
||||
;;
|
||||
x86-64-mac-catalyst)
|
||||
ASM_OPTIONS="--disable-sse2 --disable-sse4.1"
|
||||
;;
|
||||
*)
|
||||
ASM_OPTIONS="--enable-sse2 --enable-sse4.1"
|
||||
;;
|
||||
esac
|
||||
|
||||
# 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_libwebp} -eq 1 ]]; then
|
||||
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || return 1
|
||||
fi
|
||||
|
||||
./configure \
|
||||
--prefix="${LIB_INSTALL_PREFIX}" \
|
||||
--with-pic \
|
||||
--with-sysroot="${SDK_PATH}" \
|
||||
--enable-static \
|
||||
--disable-shared \
|
||||
--disable-dependency-tracking \
|
||||
--enable-libwebpmux \
|
||||
${ASM_OPTIONS} \
|
||||
--with-pngincludedir="${LIB_INSTALL_BASE}/libpng/include" \
|
||||
--with-pnglibdir="${LIB_INSTALL_BASE}/libpng/lib" \
|
||||
--with-jpegincludedir="${LIB_INSTALL_BASE}/jpeg/include" \
|
||||
--with-jpeglibdir="${LIB_INSTALL_BASE}/jpeg/lib" \
|
||||
--with-gifincludedir="${LIB_INSTALL_BASE}/giflib/include" \
|
||||
--with-giflibdir="${LIB_INSTALL_BASE}/giflib/lib" \
|
||||
--with-tiffincludedir="${LIB_INSTALL_BASE}/tiff/include" \
|
||||
--with-tifflibdir="${LIB_INSTALL_BASE}/tiff/lib" \
|
||||
--host="${HOST}" || return 1
|
||||
|
||||
make -j$(get_cpu_count) || return 1
|
||||
|
||||
make install || return 1
|
||||
|
||||
# MANUALLY COPY PKG-CONFIG FILES
|
||||
cp ${BASEDIR}/src/${LIB_NAME}/src/*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|
||||
cp ${BASEDIR}/src/${LIB_NAME}/src/demux/*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|
||||
cp ${BASEDIR}/src/${LIB_NAME}/src/mux/*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|
||||
cp ${BASEDIR}/src/${LIB_NAME}/sharpyuv/*.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|
||||
|
||||
make install || return 1
|
||||
Reference in New Issue
Block a user