2020-09-04 18:26:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-09-04 21:30:11 +00:00
|
|
|
VORBIS_REPO="https://github.com/xiph/vorbis.git"
|
2021-04-03 23:09:54 +00:00
|
|
|
VORBIS_COMMIT="4e1155cc77a2c672f3dd18f9a32dbf1404693289"
|
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 "$VORBIS_REPO" "$VORBIS_COMMIT" vorbis
|
2020-09-04 21:30:11 +00:00
|
|
|
cd vorbis
|
2020-09-04 18:26:58 +00:00
|
|
|
|
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-04 21:30:11 +00:00
|
|
|
--disable-oggtest
|
2020-09-04 18:26:58 +00:00
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-04 18:26:58 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
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 21:30:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-libvorbis
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-libvorbis
|
2020-09-04 18:26:58 +00:00
|
|
|
}
|