Files
spacedrive/.github/scripts/ffmpeg-windows/scripts.d/20-iconv.sh
Vítor Vasconcellos f433995de6 [ENG-867] Remove unnecessary encoders from our FFmpeg bundle (#1061)
* Greatly improve our ffmpeg build

* Remove not needed deps

* Remove libpng from windows ffmpeg build
2023-06-30 04:35:52 +00:00

26 lines
496 B
Bash

#!/bin/bash
SCRIPT_REPO="https://git.savannah.gnu.org/git/libiconv.git"
SCRIPT_TAG="v1.17"
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_TAG" libiconv
cd libiconv
retry-tool ./gitsub.sh pull
(unset CC CFLAGS GMAKE && ./autogen.sh)
local myconf=(
--host="$FFBUILD_TOOLCHAIN"
--prefix="$FFBUILD_PREFIX"
--enable-extra-encodings
--disable-shared
--enable-static
--with-pic
)
./configure "${myconf[@]}"
make -j"$(nproc)"
make install
}