30 lines
704 B
Bash
30 lines
704 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd "${LIB_NAME}" || return 1
|
||
|
|
||
|
# 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}"/"${LIB_NAME}"/configure ]] || [[ ${RECONF_expat} -eq 1 ]]; then
|
||
|
autoreconf_library "${LIB_NAME}"
|
||
|
fi
|
||
|
|
||
|
./configure \
|
||
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
||
|
--with-pic \
|
||
|
--with-sysroot="${SDK_PATH}" \
|
||
|
--without-docbook \
|
||
|
--without-xmlwf \
|
||
|
--enable-static \
|
||
|
--disable-shared \
|
||
|
--disable-fast-install \
|
||
|
--host="${HOST}" || return 1
|
||
|
|
||
|
make -j$(get_cpu_count) || return 1
|
||
|
|
||
|
make install || return 1
|
||
|
|
||
|
# MANUALLY COPY PKG-CONFIG FILES
|
||
|
cp ./expat.pc "${INSTALL_PKG_CONFIG_DIR}" || return 1
|