Files
jellyfin-ffmpeg/builder/scripts.d/45-libvorbis.sh
T
2026-05-28 10:57:06 +08:00

47 lines
914 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/xiph/vorbis.git"
SCRIPT_COMMIT="68a7fc2246e734f1a311b06083fc1249551c4412"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" vorbis
cd vorbis
./autogen.sh
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--disable-oggtest
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
elif [[ $TARGET == mac* ]]; then
# This only make sense for PowerPC
sed -i '' 's/-force_cpusubtype_ALL//g' ./configure
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libvorbis
}
ffbuild_unconfigure() {
echo --disable-libvorbis
}