2022-11-11 18:15:45 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
SCRIPT_REPO="https://github.com/xiph/vorbis.git"
|
2026-05-28 10:55:08 +08:00
|
|
|
SCRIPT_COMMIT="68a7fc2246e734f1a311b06083fc1249551c4412"
|
2022-11-11 18:15:45 +08:00
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
)
|
2024-02-24 00:07:11 +08:00
|
|
|
elif [[ $TARGET == mac* ]]; then
|
|
|
|
|
# This only make sense for PowerPC
|
|
|
|
|
sed -i '' 's/-force_cpusubtype_ALL//g' ./configure
|
2022-11-11 18:15:45 +08:00
|
|
|
else
|
|
|
|
|
echo "Unknown target"
|
|
|
|
|
return -1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
./configure "${myconf[@]}"
|
|
|
|
|
make -j$(nproc)
|
|
|
|
|
make install
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
|
echo --enable-libvorbis
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
|
echo --disable-libvorbis
|
|
|
|
|
}
|