35 lines
689 B
Bash
Executable file
35 lines
689 B
Bash
Executable file
#!/bin/bash
|
|
|
|
HARFBUZZ_REPO="https://github.com/harfbuzz/harfbuzz.git"
|
|
HARFBUZZ_COMMIT="6da4b80e5f303bf40c295c4888ba3dc48bd28f4b"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$HARFBUZZ_REPO" "$HARFBUZZ_COMMIT" harfbuzz
|
|
cd 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
|
|
}
|