-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew.sh
executable file
·71 lines (60 loc) · 956 Bytes
/
brew.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
#!/bin/sh
#
# Homebrew
#
# This installs some of the common dependencies needed (or at least desired)
# using Homebrew.
# Check for Homebrew
if test ! $(which brew)
then
echo " Installing Homebrew for you."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
cd "$(dirname "$0")"
# homebrew packages
FORMULAS=(
autoconf
automake
caskroom/cask/brew-cask
cmake
coreutils
fzf
gcc
git
kube-ps1
mercurial
mongodb
mysql
node
openssl
postgresql
python
python3
rsync
rust
screenfetch
sqlite
wget
zsh
gpg2
gnupg
pinentry-mac
)
CASKS=(
alfred
bartender
bettertouchtool
calibre
contexts
firefox
flux
iterm2
telegram
the-unarchiver
vlc
wireshark
)
brew install ${FORMULAS[@]}
#brew update
brew install --cask --appdir="/Applications" ${CASKS[@]}
brew cleanup