mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
40 lines
698 B
Bash
Executable File
40 lines
698 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/freetype/freetype.git"
|
|
SCRIPT_COMMIT="ca76683b781db5d06ef1a0e2cb62a767e7dbe626"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
./autogen.sh
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libfreetype
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libfreetype
|
|
}
|