Skip to content

Commit

Permalink
[brew] update installation of brews and casks
Browse files Browse the repository at this point in the history
This is needed since the `brew bundle` command is not supported anymore;
see Homebrew/legacy-homebrew#30815 for further
details.
  • Loading branch information
pangratz committed Jan 26, 2015
1 parent 8268932 commit df3ac74
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 39 deletions.
46 changes: 23 additions & 23 deletions homebrew/Brewfile
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
# Make sure we’re using the latest Homebrew
update
brew update

# Use most recent version of vim
install vim --override-system-vi
brew install vim --override-system-vi

# for a sane tmux <--> OSX clipboard service
# http://robots.thoughtbot.com/tmux-copy-paste-on-os-x-a-better-future
install tmux
install reattach-to-user-namespace
brew install tmux
brew install reattach-to-user-namespace

# source control systems
install git
install mercurial
install subversion
brew install git
brew install mercurial
brew install subversion

# youtube-dl and dependencies for post processing
install youtube-dl
install ffmpeg
brew install youtube-dl
brew install ffmpeg

# utilities
install packer
install wget
install z
brew install packer
brew install wget
brew install z

# JavasScript related stuff
install node
install casperjs
install phantomjs
install slimerjs
brew install node
brew install casperjs
brew install phantomjs
brew install slimerjs

# databases
install couchdb
install mysql
install postgresql
install redis
brew install couchdb
brew install mysql
brew install postgresql
brew install redis

# needed for gifify
install imagemagick
install gifsicle
brew install imagemagick
brew install gifsicle

# Remove outdated versions from the cellar
cleanup
brew cleanup
28 changes: 14 additions & 14 deletions homebrew/Caskfile
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
tap caskroom/cask
install brew-cask
brew tap caskroom/cask
brew install brew-cask

# sync utils
cask install dropbox
cask install google-drive
brew cask install dropbox
brew cask install google-drive

cask install controlplane
cask install iterm2
cask install skype
cask install vagrant
cask install virtualbox
cask install vlc
brew cask install controlplane
brew cask install iterm2
brew cask install skype
brew cask install vagrant
brew cask install virtualbox
brew cask install vlc

# browsers
cask install firefox
cask install google-chrome
cask install google-chrome-canary
cask install opera
brew cask install firefox
brew cask install google-chrome
brew cask install google-chrome-canary
brew cask install opera
4 changes: 2 additions & 2 deletions homebrew/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ then
fi

# Install homebrew packages from se Brewfile
brew bundle $DOTFILES/homebrew/Brewfile
$DOTFILES/homebrew/Brewfile

# Install casks from se Caskfile
brew bundle $DOTFILES/homebrew/Caskfile
$DOTFILES/homebrew/Caskfile

exit 0

0 comments on commit df3ac74

Please sign in to comment.