#!/bin/bash OGG_REPO="https://github.com/xiph/ogg.git" OGG_COMMIT="31bd3f2707fb7dbae539a7093ba1fc4b2b37d84e" ffbuild_enabled() { return 0 } ffbuild_dockerbuild() { git-mini-clone "$OGG_REPO" "$OGG_COMMIT" ogg cd ogg ./autogen.sh local myconf=( --prefix="$FFBUILD_PREFIX" --disable-shared --enable-static --with-pic ) if [[ $TARGET == win* ]]; then myconf+=( --host="$FFBUILD_TOOLCHAIN" ) elif [[ $TARGET != linux* ]]; then echo "Unknown target" return -1 fi ./configure "${myconf[@]}" make -j$(nproc) make install }