-
Notifications
You must be signed in to change notification settings - Fork 0
/
homebrew.sh
48 lines (42 loc) · 1003 Bytes
/
homebrew.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cat homebrew.sh
# Make sure we’re using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
# Install more recent versions of some OS X tools
brew install vim --override-system-vi
brew tap homebrew/dupes
brew tap homebrew/versions
# PHP development tools
brew tap homebrew/homebrew-php
brew install php56 --with-pgsql
brew install php56-xdebug php56-mcrypt composer
# Install other useful tools
brew install wget
brew install ack
brew install git
brew install imagemagick
brew install lynx
brew install node
brew install pigz
brew install rename
brew install rhino
brew install tree
brew install webkit2png
brew install zopfli
brew install p7zip
brew install nmap
brew install postgresql
brew install openssl
brew install curl
brew install vim
brew install ssh-copy-id
brew install npm
brew install ngrep
brew install dash
brew install rbenv
brew install ruby-build
brew install python
brew install rsync
# Remove outdated versions from the cellar
brew cleanup