Shuffle packages into fewer layers

This commit is contained in:
BtbN
2021-04-06 05:08:33 +02:00
parent 6aa734be0a
commit 8a8d78815d
2 changed files with 0 additions and 0 deletions

43
scripts.d/45-libvorbis.sh Executable file
View File

@ -0,0 +1,43 @@
#!/bin/bash
VORBIS_REPO="https://github.com/xiph/vorbis.git"
VORBIS_COMMIT="4e1155cc77a2c672f3dd18f9a32dbf1404693289"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$VORBIS_REPO" "$VORBIS_COMMIT" vorbis
cd vorbis
./autogen.sh
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--disable-oggtest
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libvorbis
}
ffbuild_unconfigure() {
echo --disable-libvorbis
}