2020-09-04 18:26:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-09-04 19:52:01 +00:00
|
|
|
ICONV_SRC="https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.16.tar.gz"
|
2020-09-04 18:26:58 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerstage() {
|
2020-09-05 14:38:11 +00:00
|
|
|
to_df "ADD $SELF /stage.sh"
|
|
|
|
to_df "RUN run_stage"
|
2020-09-04 18:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2020-09-04 19:52:01 +00:00
|
|
|
mkdir iconv
|
|
|
|
cd iconv
|
|
|
|
wget -O iconv.tar.gz "$ICONV_SRC" || return -1
|
|
|
|
tar xaf iconv.tar.gz || return -1
|
|
|
|
rm iconv.tar.gz
|
|
|
|
cd libiconv*
|
2020-09-04 18:26:58 +00:00
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
2020-09-04 19:52:01 +00:00
|
|
|
--enable-extra-encodings
|
2020-09-04 18:26:58 +00:00
|
|
|
--disable-shared
|
|
|
|
--enable-static
|
2020-09-04 19:52:01 +00:00
|
|
|
--with-pic
|
2020-09-04 18:26:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if [[ $TARGET == win* ]]; then
|
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
|
|
|
else
|
|
|
|
echo "Unknown target"
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
|
|
|
./configure "${myconf[@]}" || return -1
|
|
|
|
make -j$(nproc) || return -1
|
|
|
|
make install || return -1
|
|
|
|
|
2020-09-04 19:52:01 +00:00
|
|
|
cd ../..
|
|
|
|
rm -rf iconv
|
2020-09-04 18:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
2020-09-04 19:52:01 +00:00
|
|
|
echo --enable-iconv
|
2020-09-04 18:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
2020-09-04 19:52:01 +00:00
|
|
|
echo --disable-iconv
|
2020-09-04 18:26:58 +00:00
|
|
|
}
|