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

58 lines
1.1 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"
THEORA_COMMIT="f98989ad7c3745d6cc4d24666e64046ff4a3f745"
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 19:52:01 +00:00
git clone "$THEORA_REPO" theora || return -1
cd theora
git checkout "$THEORA_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 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
}