FFmpeg-Builds/scripts.d/50-libtheora.sh

57 lines
1.0 KiB
Bash
Raw Normal View History

2020-09-04 18:26:58 +00:00
#!/bin/bash
2020-09-04 19:52:01 +00:00
THEORA_REPO="https://github.com/xiph/theora.git"
2020-11-10 15:22:37 +00:00
THEORA_COMMIT="7180717276af1ebc7da15c83162d6c5d6203aabf"
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 "$THEORA_REPO" "$THEORA_COMMIT" theora
2020-09-04 19:52:01 +00:00
cd theora
2020-09-04 18:26:58 +00:00
./autogen.sh || return -1
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
2020-09-04 19:52:01 +00:00
--with-pic
--disable-examples
2020-09-04 18:26:58 +00:00
--disable-oggtest
2020-09-04 19:52:01 +00:00
--disable-vorbistest
--disable-spec
--disable-doc
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 19:52:01 +00:00
rm -rf theora
2020-09-04 18:26:58 +00:00
}
ffbuild_configure() {
2020-09-04 19:52:01 +00:00
echo --enable-libtheora
2020-09-04 18:26:58 +00:00
}
ffbuild_unconfigure() {
2020-09-04 19:52:01 +00:00
echo --disable-libtheora
2020-09-04 18:26:58 +00:00
}