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

39 lines
722 B
Bash
Raw Normal View History

2020-09-04 23:17:53 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/harfbuzz/harfbuzz.git"
2023-05-29 12:10:36 +00:00
SCRIPT_COMMIT="4a93576bca0f56e82a1d8ad67733df9c5ddb8dcd"
2020-09-04 23:17:53 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" harfbuzz
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/harfbuzz
2020-09-04 23:17:53 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 23:17:53 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-04 23:17:53 +00:00
echo "Unknown target"
return -1
fi
export LIBS="-lpthread"
2021-04-04 21:20:31 +00:00
./autogen.sh "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 23:17:53 +00:00
}