Closed
Description
https://github.com/avTranscoder/avTranscoder/blob/develop/tools/travis/linux.install.deps.sh
# libtheora
echo ""
echo "Building libtheora (${THEORA_VERSION})"
cd ${THIRD_PARTY} &&
curl -O http://downloads.xiph.org/releases/theora/libtheora-${THEORA_VERSION}.tar.bz2 && \
tar xvjf libtheora-${THEORA_VERSION}.tar.bz2 && \
rm libtheora-${THEORA_VERSION}.tar.bz2 && \
cd libtheora-${THEORA_VERSION} && \
./configure --prefix="${SRC}" && \
make -j${MAKE_THREAD} && \
make install && \
make check && \
make distclean
And in the last configure, add:
--enable-libtheora