FFmpeg-Builds/scripts.d/35-fontconfig.sh

51 lines
960 B
Bash
Raw Normal View History

2020-09-04 21:30:11 +00:00
#!/bin/bash
2022-07-12 18:28:45 +00:00
SCRIPT_REPO="https://gitlab.freedesktop.org/fontconfig/fontconfig.git"
2023-06-21 11:43:28 +00:00
SCRIPT_COMMIT="7e2a1b2577e8d90ea5be3f14091e809ac7742438"
2020-09-04 21:30:11 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-04 21:30:11 +00:00
2022-07-12 18:28:45 +00:00
./autogen.sh --noconf
2020-09-04 21:30:11 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
2020-12-22 21:34:59 +00:00
--disable-docs
2020-09-04 21:30:11 +00:00
--enable-libxml2
2020-12-22 21:34:59 +00:00
--enable-iconv
2020-09-04 21:30:11 +00:00
--disable-shared
--enable-static
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--sysconfdir=/etc
--localstatedir=/var
--host="$FFBUILD_TOOLCHAIN"
)
elif [[ $TARGET == win* ]]; then
2020-09-04 21:30:11 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-04 21:30:11 +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 21:30:11 +00:00
}
ffbuild_configure() {
echo --enable-fontconfig
}
ffbuild_unconfigure() {
echo --disable-fontconfig
}