FFmpeg-Builds/scripts.d/20-libiconv.sh

50 lines
994 B
Bash
Raw Normal View History

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-05-29 12:10:36 +00:00
SCRIPT_COMMIT="5448df580c4287b7bfe59d3be0dcbb2227e641d1"
2020-09-04 18:26:58 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
to_df "RUN retry-tool sh -c \"rm -rf $SELF && git clone '$SCRIPT_REPO' $SELF\""
to_df "RUN git -C $SELF checkout \"$SCRIPT_COMMIT\""
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2022-07-12 18:28:45 +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
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 18:26:58 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
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
}