FFmpeg-Builds/scripts.d/45-harfbuzz.sh

39 lines
722 B
Bash
Executable File

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