35 lines
681 B
Bash
Executable file
35 lines
681 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/harfbuzz/harfbuzz.git"
|
|
SCRIPT_COMMIT="0066e824f02efce79e026f60391f3fd95214e1ac"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_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
|
|
}
|