2020-09-04 23:17:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
HARFBUZZ_REPO="https://github.com/harfbuzz/harfbuzz.git"
|
2021-10-28 18:47:11 +00:00
|
|
|
HARFBUZZ_COMMIT="85deddb16ee6b00b0c921998e1d93c84002f5a42"
|
2020-09-04 23:17:53 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2020-09-05 20:34:23 +00:00
|
|
|
git-mini-clone "$HARFBUZZ_REPO" "$HARFBUZZ_COMMIT" harfbuzz
|
2020-09-04 23:17:53 +00:00
|
|
|
cd harfbuzz
|
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
|
|
|
--disable-shared
|
|
|
|
--enable-static
|
|
|
|
--with-pic
|
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-04 23:17:53 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
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
|
|
|
}
|