FFmpeg-Builds/scripts.d/49-libvorbis.sh

53 lines
958 B
Bash
Raw Normal View History

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"
VORBIS_COMMIT="4a767c9ead99d36f7dee4d45cabb6636dd9e8a75"
2020-09-04 18:26:58 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
2020-09-05 14:38:11 +00:00
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
2020-09-04 18:26:58 +00:00
}
ffbuild_dockerbuild() {
2020-09-04 21:30:11 +00:00
git clone "$VORBIS_REPO" vorbis || return -1
cd vorbis
git checkout "$VORBIS_COMMIT" || return -1
2020-09-04 18:26:58 +00:00
./autogen.sh || return -1
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
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
cd ..
2020-09-04 21:30:11 +00:00
rm -rf vorbis
}
ffbuild_configure() {
echo --enable-libvorbis
}
ffbuild_unconfigure() {
echo --disable-libvorbis
2020-09-04 18:26:58 +00:00
}