#!/bin/bash SCRIPT_REPO="https://github.com/libass/libass.git" SCRIPT_COMMIT="a48c98c274df25cc8d60cac1402948387d49840c" ffbuild_enabled() { return 0 } ffbuild_dockerbuild() { git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" ass cd ass ./autogen.sh 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 ./configure "${myconf[@]}" make -j$(nproc) make install } ffbuild_configure() { echo --enable-libass } ffbuild_unconfigure() { echo --disable-libass }