From d9ada0eefac30a1a6c27e3825f1e05b46753ae1f Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Thu, 2 May 2013 21:33:19 +0200 Subject: .brew: Install native apps through homebrew-cask Closes #200. --- .brew | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to '.brew') diff --git a/.brew b/.brew index b4e0e6d..91f65d8 100755 --- a/.brew +++ b/.brew @@ -32,7 +32,7 @@ brew install php54 #brew install homebrew/dupes/vim #brew install homebrew/dupes/screen -# Install everything else +# Install other useful binaries brew install ack #brew install exiv2 brew install git @@ -49,5 +49,30 @@ brew install zopfli brew tap homebrew/versions brew install lua52 +# Install native apps +brew tap phinze/homebrew-cask +brew install brew-cask + +function installcask() { + if brew cask info "${@}" | grep "Not installed" > /dev/null; then + brew cask install "${@}" + else + echo "${@} is already installed." + fi +} + +installcask google-chrome +installcask google-chrome-canary +installcask iterm2 +installcask macvim +installcask miro-video-converter +installcask sublime-text +installcask the-unarchiver +installcask tor-browser +installcask transmission +installcask ukelele +installcask virtualbox +installcask vlc + # Remove outdated versions from the cellar brew cleanup -- cgit v1.2.3