ffmpeg-kit/scripts/android/libiconv.sh

31 lines
815 B
Bash
Raw Normal View History

2020-08-05 03:53:02 +03:00
#!/bin/bash
2023-07-17 01:59:12 +03:00
# INIT SUBMODULES
2023-08-03 08:32:35 +03:00
${SED_INLINE} 's|git://git.savannah.gnu.org|https://github.com/arthenica|g' "${BASEDIR}"/src/"${LIB_NAME}"/.gitmodules || return 1
2020-11-23 00:51:45 +02:00
./gitsub.sh pull || return 1
2020-08-05 03:53:02 +03:00
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_libiconv} -eq 1 ]]; then
2023-07-17 01:59:12 +03:00
./autogen.sh || return 1
2020-08-05 03:53:02 +03:00
fi
./configure \
2020-11-23 00:51:45 +02:00
--prefix="${LIB_INSTALL_PREFIX}" \
--with-pic \
--with-sysroot="${ANDROID_SYSROOT}" \
--enable-static \
--disable-shared \
--disable-fast-install \
--disable-rpath \
--host="${HOST}" || return 1
2020-08-05 03:53:02 +03:00
2020-11-23 00:51:45 +02:00
make -j$(get_cpu_count) || return 1
2020-08-05 03:53:02 +03:00
2020-11-23 00:51:45 +02:00
make install || return 1
2020-08-05 03:53:02 +03:00
2020-11-23 00:51:45 +02:00
# CREATE PACKAGE CONFIG MANUALLY
2022-09-04 20:15:16 +03:00
create_libiconv_package_config "1.17" || return 1