-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-homebrew.sh
executable file
·132 lines (124 loc) · 5.36 KB
/
setup-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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/bin/sh
if ! type brew >/dev/null 2>&1; do
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
brew upgrade
brew tap homebrew/cask-versions
brew tap railwaycat/emacsmacport
brew install mg htop git cmake ninja gcc
packages= \
adns \
ffmpeg \
imagemagick \
pyenv \
gnu-sed \
mercurial \
sphinx-doc \
gnu-time \
opencv \
gnupg \
mg \
q \
fmt \
gnuplot \
jemalloc \
mitmproxy \
fontconfig \
jo \
openssl \
go \
mosh \
szip \
avrdude \
google-benchmark \
jq \
most \
tbb \
awscli \
graphicsmagick \
bazel \
mplayer \
boost \
gawk \
graphviz \
rbenv \
gcc \
grc \
multimarkdown \
pcre \
readline \
grep \
pcre2 \
gdb \
nasm \
perl-build \
harfbuzz \
unbound \
chruby \
highlight \
ruby-build \
webp \
clang-format \
pkg-config \
wget \
htop \
ninja \
plenv \
wxmac \
cmake \
nmap \
plotutils \
x264 \
coreutils \
git \
icu4c \
node \
x265 \
git-extras \
git-open \
numpy \
protobuf \
xz \
djvulibre \
doxygen \
eigen \
octave \
sdl \
zeromq \
emacs-mac \
llvm \
pstree \
sdl2 \
zsh \
emscripten \
zsh-syntax-highlighting \
lua \
pv
brew install $packages
brew install --with-modules --with-xml2 --with-spacemacs-icon --with-imagemagick emacs-mac
ln -sf /usr/local/opt/emacs-mac/Emacs.app /Applications
packages= \
1password \
adobe-acrobat-reader \
airmail-beta \
cheatsheet \
cleanmymac \
docker \
gimp \
google-chrome \
grandperspective \
inkscape \
mactex \
ngrok \
pdfsam-basic \
slack \
turbovnc-viewer \
virtualbox \
virtualbox-extension-pack \
vnc-viewer \
wireshark \
wireshark-chmodbpf \
x-moto \
xquartz
brew cask install $packages
brew cleanup