FFmpeg-Builds/scripts.d/25-libogg.sh

36 lines
638 B
Bash
Raw Normal View History

2020-09-04 18:26:58 +00:00
#!/bin/bash
OGG_REPO="https://github.com/xiph/ogg.git"
2021-07-12 14:29:31 +00:00
OGG_COMMIT="3069cc2bb44160982cdb21b2b8f0660c76b17572"
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 "$OGG_REPO" "$OGG_COMMIT" ogg
2020-09-04 18:26:58 +00:00
cd ogg
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
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 18:26:58 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
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 18:26:58 +00:00
}