Skip to content

Instantly share code, notes, and snippets.

@vasilykraev
Created November 11, 2014 05:49
Show Gist options
  • Save vasilykraev/73a983119e647ba186a9 to your computer and use it in GitHub Desktop.
Save vasilykraev/73a983119e647ba186a9 to your computer and use it in GitHub Desktop.
Install all needed MacOS software with homebrew
echo "install homebrew"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
echo "install system soft"
brew install \
ansible \
midnight-commander \
ssh-copy-id \
sqlite \
wget \
unrar \
zsh
echo "install php related"
brew tap homebrew/dupes
brew tap homebrew/php
brew install \
php56 \
composer \
drush
echo "install caskroom"
brew install caskroom/cask/brew-cask
brew cask
echo "install casks"
brew cask install \
apimac-timer \
appcleaner \
audacity \
bittorrent-sync \
brackets \
chromium \
coconutbattery \
djview \
dropbox \
dukto \
evernote \
flux \
hex-fiend \
iterm2 \
keepassx \
libreoffice \
mactracker \
mou \
mover \
mucommander \
phpstorm \
qtox \
reggy \
rubymine \
sequel-pro \
soundflower \
sourcetree \
the-cheat \
vagrant \
vlc \
xtrafinder
echo "install alternative version casks"
brew tap caskroom/versions
brew cask install \
java6 \
sublime-text3 \
utorrrent-ppc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment