FFmpeg-Builds/scripts.d/50-libopus.sh

44 lines
764 B
Bash
Raw Normal View History

2020-09-04 18:26:58 +00:00
#!/bin/bash
OPUS_REPO="https://github.com/xiph/opus.git"
2022-04-23 19:49:20 +00:00
OPUS_COMMIT="ccaaffa9a3ee427e9401c4dcf6462e378d9a4694"
2020-09-04 18:26:58 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$OPUS_REPO" "$OPUS_COMMIT" opus
2020-09-04 18:26:58 +00:00
cd opus
2021-04-04 21:20:31 +00:00
./autogen.sh
2020-09-04 18:26:58 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
2020-09-05 21:58:44 +00:00
--disable-extra-programs
2020-09-04 18:26:58 +00:00
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 18:26:58 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-04 18:26:58 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 18:26:58 +00:00
}
ffbuild_configure() {
echo --enable-libopus
}
ffbuild_unconfigure() {
echo --disable-libopus
}