FFmpeg-Builds/scripts.d/45-harfbuzz.sh
2023-08-17 18:33:19 +02:00

35 lines
635 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/harfbuzz/harfbuzz.git"
SCRIPT_COMMIT="c7f2d440f463be31ae24cbae7ceb6ea72a15e990"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
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
}