2020-09-04 18:26:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 18:28:45 +00:00
|
|
|
SCRIPT_REPO="https://git.savannah.gnu.org/git/libiconv.git"
|
2023-07-08 15:37:10 +00:00
|
|
|
SCRIPT_COMMIT="6e2b31f6d66739c5abd850338ea68c6bd2012812"
|
2020-09-04 18:26:58 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2023-06-18 14:44:57 +00:00
|
|
|
ffbuild_dockerdl() {
|
2023-06-18 19:25:50 +00:00
|
|
|
to_df "RUN retry-tool sh -c \"rm -rf $SELF && git clone '$SCRIPT_REPO' $SELF\""
|
|
|
|
to_df "RUN git -C $SELF checkout \"$SCRIPT_COMMIT\""
|
2023-06-18 14:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2023-06-18 19:25:50 +00:00
|
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
2022-07-12 18:28:45 +00:00
|
|
|
|
2023-05-29 13:16:55 +00:00
|
|
|
retry-tool ./autopull.sh --one-time
|
|
|
|
(unset CC CFLAGS GMAKE && ./autogen.sh)
|
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
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-04 18:26:58 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-09-04 18:26:58 +00:00
|
|
|
echo "Unknown target"
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
2021-04-04 21:20:31 +00:00
|
|
|
./configure "${myconf[@]}"
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
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
|
|
|
}
|