-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds osx in .travis.yml, also adds ./install.sh to install the depend…
…encies
- Loading branch information
1 parent
381c76f
commit 68cbf13
Showing
2 changed files
with
30 additions
and
2 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,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then | ||
|
||
# Install some custom requirements on OS X | ||
# e.g. brew install pyenv-virtualenv | ||
|
||
brew update; | ||
brew install gnutls; | ||
brew install libgcrypt; | ||
brew install gcc5 --enable-cxx | ||
brew install hiredis; | ||
brew install bdw-gc; | ||
brew install libev | ||
brew install gettext | ||
|
||
#FIXME: temporary hack for mac as gettext is not detected otherwise | ||
ln -s /usr/local/Cellar/gettext/*/lib/libintl.dylib /usr/local/lib/ | ||
ln -s /usr/local/Cellar/gettext/*/include/libintl.h /usr/local/include | ||
|
||
fi |