#!/bin/bash SCRIPT_REPO="https://gitlab.freedesktop.org/freetype/freetype.git" SCRIPT_COMMIT="dec2743e6a2a40cddfc8a9892895cb4f861e1eeb" ffbuild_enabled() { return 0 } ffbuild_dockerbuild() { cd "$FFBUILD_DLDIR/$SELF" ./autogen.sh local myconf=( --prefix="$FFBUILD_PREFIX" --disable-shared --enable-static ) if [[ $TARGET == win* || $TARGET == linux* ]]; then myconf+=( --host="$FFBUILD_TOOLCHAIN" ) else echo "Unknown target" return -1 fi ./configure "${myconf[@]}" make -j$(nproc) make install } ffbuild_configure() { echo --enable-libfreetype } ffbuild_unconfigure() { echo --disable-libfreetype }