You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
956 B
33 lines
956 B
#!/bin/bash
|
|
|
|
# INIT SUBMODULES
|
|
${SED_INLINE} 's|git://git.savannah.gnu.org|https://github.com/arthenica|g' "${BASEDIR}"/src/"${LIB_NAME}"/.gitmodules || return 1
|
|
ln -s -f $(which aclocal) ${BASEDIR}/.tmp/aclocal-1.16
|
|
ln -s -f $(which automake) ${BASEDIR}/.tmp/automake-1.16
|
|
PATH="${BASEDIR}/.tmp":$PATH
|
|
./gitsub.sh pull || 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}"/configure ]] || [[ ${RECONF_libiconv} -eq 1 ]]; then
|
|
./autogen.sh || return 1
|
|
fi
|
|
|
|
./configure \
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
--with-pic \
|
|
--with-sysroot="${ANDROID_SYSROOT}" \
|
|
--enable-static \
|
|
--disable-shared \
|
|
--disable-fast-install \
|
|
--disable-rpath \
|
|
--host="${HOST}" || return 1
|
|
|
|
make -j$(get_cpu_count) || return 1
|
|
|
|
make install || return 1
|
|
|
|
# CREATE PACKAGE CONFIG MANUALLY
|
|
create_libiconv_package_config "1.17" || return 1
|
|
|