forked from wangqr/Aegisub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
43 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#! /bin/bash | ||
|
||
set -e | ||
|
||
if [ $TRAVIS_OS_NAME = 'osx' ]; then | ||
brew install autoconf ffmpeg freetype gettext ffms2 fftw fribidi libass m4 icu4c boost wxmac lua | ||
else | ||
sudo luarocks install busted > /dev/null | ||
sudo luarocks install moonscript > /dev/null | ||
sudo luarocks install uuid > /dev/null | ||
# Remove the CMake provided by travis | ||
sudo rm -rf /usr/local/cmake* | ||
if [ "$BUILD_SUIT" = "autotools" ]; then | ||
sudo pip install -U cpp-coveralls; | ||
git submodule --quiet init; | ||
git submodule --quiet update vendor/googletest; | ||
else | ||
pushd /usr/src/googletest; | ||
sudo cmake .; | ||
sudo make install -j2; | ||
popd; | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters