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

38 lines
697 B
Bash
Executable File

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