#!/bin/bash SCRIPT_REPO="https://github.com/xiph/opus.git" SCRIPT_COMMIT="9fc8fc4cf432640f284113ba502ee027268b0d9f" ffbuild_enabled() { return 0 } ffbuild_dockerbuild() { cd "$FFBUILD_DLDIR/$SELF" ./autogen.sh local myconf=( --prefix="$FFBUILD_PREFIX" --disable-shared --enable-static --disable-extra-programs ) 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-libopus } ffbuild_unconfigure() { echo --disable-libopus }