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

44 lines
780 B
Bash
Raw Normal View History

2020-09-04 18:26:58 +00:00
#!/bin/bash
OGG_REPO="https://github.com/xiph/ogg.git"
2020-11-10 15:22:37 +00:00
OGG_COMMIT="31bd3f2707fb7dbae539a7093ba1fc4b2b37d84e"
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-05 20:34:23 +00:00
git-mini-clone "$OGG_REPO" "$OGG_COMMIT" ogg
2020-09-04 18:26:58 +00:00
cd ogg
./autogen.sh || return -1
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
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 ..
rm -rf ogg
}