FFmpeg-Builds/scripts.d/50-libopus.sh
2024-03-13 14:53:01 +01:00

44 lines
750 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/xiph/opus.git"
SCRIPT_COMMIT="ab4e83598e7fc8b2ce82dc633a0fc0c452b629aa"
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
default_dl .
echo "./autogen.sh"
}
ffbuild_dockerbuild() {
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
}