Skip to content

Instantly share code, notes, and snippets.

@LibertyDevs
Created October 3, 2014 10:38
Show Gist options
  • Save LibertyDevs/f9d851fce2fb08d0420f to your computer and use it in GitHub Desktop.
Save LibertyDevs/f9d851fce2fb08d0420f to your computer and use it in GitHub Desktop.
brewApplicationInstall.sh
#!/usr/bin/env bash
# stop if an error occurs or undefined variable.
set -eu
# Make sure using latest Homebrew
brew update
# Update already-installed formula (takes too much time, I will do it manually later)
# upgrade
# Add Repository
brew tap homebrew/versions || true
brew tap phinze/homebrew-cask || true
brew tap homebrew/binary || true
brew tap sonots/mycask || true
brew tap homebrew/php || true
# Packages
brew install zsh || true
brew install git || true
brew install gist || true
#install tig
#install rmtrash
#install tmux
#install ack
#install ctags
brew install nkf || true
brew install lv || true
brew install wget || true
brew install tree || true
brew install pkg-config || true
#install pidof
brew install libtool || true
brew install cmake || true
brew install autoconf || true
brew install automake || true
#install mosh
brew install proctools || true
#brew install markdown || true
#install coreutils
#install imagemagick
#install packer
brew install rbenv || true
brew install ruby-build || true
brew install rbenv-gemset || true
brew install rbenv-gem-rehash || true
brew install re2c || true
brew install libmcrypt || true
brew install brew-cask || true
# .dmg
brew cask install java || true
brew cask install google-chrome || true
brew cask install evernote || true
brew cask install iterm2 || true
brew cask install kobito || true
brew cask install virtualbox || true
brew cask install vagrant || true
brew cask install dropbox || true
#brew cask install netbeans-php || true
brew cask install github || true
brew cask install chefdk || true
brew cask install eclipse-java || true
# Remove outdated versions
brew cask cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment