We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b76aab commit 2145968Copy full SHA for 2145968
tools/travis.osx.install.deps.sh
@@ -19,5 +19,10 @@ brew install freeglut
19
if [[ ${DEPENDENCY_MODE} == "ffmpeg" ]]; then
20
brew install ffmpeg
21
elif [[ ${DEPENDENCY_MODE} == "libav" ]]; then
22
- brew install libav
+ export LIBAV_VERSION=11.3
23
+ wget https://libav.org/releases/libav-${LIBAV_VERSION}.tar.gz
24
+ tar -xvf libav-${LIBAV_VERSION}.tar.gz
25
+ cd libav-${LIBAV_VERSION}
26
+ ./configure --disable-yasm --enable-shared --disable-static && make -k && make install
27
+
28
fi
0 commit comments