mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
41 lines
831 B
Bash
Executable File
41 lines
831 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/harfbuzz/harfbuzz.git"
|
|
SCRIPT_COMMIT="f3efa6f6e54740214739ba8b00e777111e781882"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
--with-pic
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
export LIBS="-lpthread"
|
|
|
|
./autogen.sh "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
[[ $ADDINS_STR == *4.4* ]] && return 0
|
|
[[ $ADDINS_STR == *5.0* ]] && return 0
|
|
[[ $ADDINS_STR == *5.1* ]] && return 0
|
|
[[ $ADDINS_STR == *6.0* ]] && return 0
|
|
echo --enable-libharfbuzz
|
|
}
|