#!/bin/bash SCRIPT_REPO="https://git.code.sf.net/p/opencore-amr/code" SCRIPT_COMMIT="7ba9df63d310355f86cb594018fba999965c1388" ffbuild_enabled() { return 0 } ffbuild_dockerbuild() { git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" opencore cd opencore autoreconf -i local myconf=( --prefix="$FFBUILD_PREFIX" --disable-shared --enable-static --with-pic --enable-amrnb-encoder --enable-amrnb-decoder --disable-examples ) 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-libopencore-amrnb --enable-libopencore-amrwb } ffbuild_unconfigure() { echo --disable-libopencore-amrnb --disable-libopencore-amrwb }