Last active
March 16, 2017 14:23
-
-
Save donkaban/c9d2e9c0521caa2fb92d0d472998a335 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# its automatic create file from kaban's workplace | |
NAME=$(uname -s) | |
echo set prerequisites for ${NAME} platform ... | |
if [ $NAME == "Darwin" ]; then | |
if [ ! -f /usr/local/bin/brew ]; then | |
echo install brew ... | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
brew update | |
brew install coreutils midnight-commander git python cmake | |
brew install lua luajit ssh-copy-id | |
brew install mercurial wget doxygen graphviz | |
brew install android-sdk android-ndk | |
brew cleanup && brew prune | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment