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

49 lines
895 B
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_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
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
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* || $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
}
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
}