-
Notifications
You must be signed in to change notification settings - Fork 6
/
brewfile.sh
executable file
·88 lines (76 loc) · 1.64 KB
/
brewfile.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
set -eux
# Make sure using latest Homebrew
brew update
# Update already-installed formula (takes too much time, I will do it manually later)
brew upgrade
# Add Repository
brew tap homebrew/versions
brew tap homebrew/binary
brew tap homebrew/dupes
brew tap phinze/homebrew-cask
brew tap marcqualie/nginx
# Packages
brew install brew-cask
brew install git
brew install hub
brew install tig
brew install vim
brew install zsh
brew install screen
brew install ag
brew install aspell
brew install autoconf
brew install automake
brew install autossh
brew install awscli
brew install cmake
brew install coreutils
brew install elixir
brew install ffmpeg
brew install findutils
brew install geoipupdate
brew install gnu-sed
brew install gnu-tar
brew install go
brew install gpg
brew install heroku-toolbelt
brew install htop-osx
brew install jq
brew install keychain
brew install libffi
brew install mupdf-tools
brew install openssl
brew install parallel
brew install percona-toolkit
brew install pkg-config
brew install proctools
brew install pssh
brew install pstree
brew install qt@5.5
brew install readline
brew install socat
brew install sqlite
brew install ssh-copy-id
brew install tmux
brew install tree
brew install watch
brew install wget
brew install mysql
brew install postgresql
brew install redis
brew install ngrep
brew install tcpflow
brew install wireshark
# .dmg
brew cask install dropbox
brew cask install firefox
brew cask install google-chrome
brew cask install google-japanese-ime
brew cask install java
brew cask install vagrant
brew cask install virtualbox
# Required java
brew install ec2-api-tools
# Remove outdated versions
brew cleanup