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

45 lines
861 B
Bash
Raw Normal View History

2020-09-04 23:17:53 +00:00
#!/bin/bash
HARFBUZZ_REPO="https://github.com/harfbuzz/harfbuzz.git"
HARFBUZZ_COMMIT="faf09f5466370a45e1a9d7c07968af517d680d78"
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
2020-09-05 14:38:11 +00:00
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
2020-09-04 23:17:53 +00:00
}
ffbuild_dockerbuild() {
git clone "$HARFBUZZ_REPO" harfbuzz || return -1
cd harfbuzz
git checkout "$HARFBUZZ_COMMIT" || return -1
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
export LIBS="-lpthread"
./autogen.sh "${myconf[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
cd ..
rm -rf harfbuzz
}