2012-06-28 19:45:03 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
2014-02-24 17:35:21 +01:00
|
|
|
|
# Install Homebrew
|
|
|
|
|
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
|
|
|
|
|
|
2012-06-18 21:46:35 +02:00
|
|
|
|
# Make sure we’re using the latest Homebrew
|
|
|
|
|
brew update
|
|
|
|
|
|
|
|
|
|
# Upgrade any already-installed formulae
|
|
|
|
|
brew upgrade
|
|
|
|
|
|
|
|
|
|
# Install what we need
|
|
|
|
|
brew install git
|
2014-03-17 17:14:59 +01:00
|
|
|
|
brew install node --without-npm
|
2014-01-04 16:03:23 +01:00
|
|
|
|
brew install wget
|
|
|
|
|
brew install gpg2
|
|
|
|
|
brew install mysql
|
|
|
|
|
brew install imagemagick
|
2014-01-27 18:16:45 +01:00
|
|
|
|
brew install GraphicsMagick
|
2014-02-10 20:20:41 +01:00
|
|
|
|
brew install android
|
|
|
|
|
|
2014-03-17 17:14:59 +01:00
|
|
|
|
# Install npm on its own
|
|
|
|
|
curl -L https://npmjs.org/install.sh | sh
|