23 lines
359 B
Bash
Executable file
23 lines
359 B
Bash
Executable file
#!/bin/bash
|
|
sw_vers
|
|
brew update
|
|
brew list
|
|
brew install pcre
|
|
# brew install boost
|
|
case "$SWIGLANG" in
|
|
"csharp")
|
|
brew install https://s3.amazonaws.com/travisbuilds.swig.org/mono.rb
|
|
;;
|
|
"guile")
|
|
Tools/brew-install guile
|
|
;;
|
|
"lua")
|
|
brew install lua
|
|
;;
|
|
"python")
|
|
if [[ "$PY3" ]]; then
|
|
brew install python3
|
|
brew list -v python3
|
|
fi
|
|
;;
|
|
esac
|