2016-10-08 00:37:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-11-28 17:27:58 +00:00
|
|
|
# reminder: homebrew is *spyware*. if you don't do this, it won't
|
|
|
|
# set HOMEBREW_NO_ANALYTICS and it will silently spy on you when you use it.
|
2020-05-06 20:47:19 +00:00
|
|
|
# this should happen in the .profile but let's do it again here to be certain:
|
2016-10-08 00:37:22 +00:00
|
|
|
source $HOME/.profile
|
2020-05-06 20:47:19 +00:00
|
|
|
export HOMEBREW_NO_ANALYTICS=1
|
|
|
|
|
|
|
|
# Homebrew's package database is on GitHub. The hashes to verify the
|
|
|
|
# authenticity of the source archive downloads are in the package database.
|
|
|
|
# Microsoft, a large US military contractor with long ties to illegal NSA spying
|
|
|
|
# programs, bought GitHub and can exercise control over them.
|
|
|
|
|
|
|
|
# What this means is that a large US military contractor has control over the
|
|
|
|
# precise software that gets installed on your computer when you
|
|
|
|
# type "brew install x". Cool, huh?
|
2016-10-08 00:37:22 +00:00
|
|
|
|
|
|
|
HOMEBREW_PKGS="
|
2018-09-14 10:06:34 +00:00
|
|
|
asciinema
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
bonnie++
|
2019-03-29 02:48:26 +00:00
|
|
|
bwm-ng
|
2018-09-14 10:06:34 +00:00
|
|
|
byobu
|
2020-03-22 18:15:43 +00:00
|
|
|
cksfv
|
2018-09-14 10:06:34 +00:00
|
|
|
cmake
|
|
|
|
coreutils
|
|
|
|
curl
|
|
|
|
daemontools
|
|
|
|
docker
|
|
|
|
docker-compose
|
|
|
|
docker-machine
|
|
|
|
duplicity
|
|
|
|
ffmpeg
|
|
|
|
fish
|
|
|
|
flac
|
|
|
|
geoip
|
|
|
|
gist
|
|
|
|
git
|
|
|
|
gnupg
|
|
|
|
gnupg2
|
|
|
|
go
|
|
|
|
gpg-agent
|
|
|
|
homebrew/dupes/rsync
|
|
|
|
httpie
|
2019-03-22 00:36:28 +00:00
|
|
|
httrack
|
2018-09-14 10:06:34 +00:00
|
|
|
irssi
|
|
|
|
jq
|
|
|
|
kubernetes-cli
|
|
|
|
lame
|
|
|
|
mosh
|
|
|
|
mtr
|
|
|
|
mutt
|
2018-10-25 12:11:40 +00:00
|
|
|
neovim
|
2018-09-14 10:06:34 +00:00
|
|
|
nmap
|
|
|
|
offlineimap
|
2019-04-03 15:19:42 +00:00
|
|
|
p7zip
|
2018-09-27 19:37:45 +00:00
|
|
|
par2
|
2018-09-14 10:06:34 +00:00
|
|
|
pbzip2
|
|
|
|
pgpdump
|
|
|
|
pinentry-mac
|
|
|
|
protobuf
|
|
|
|
pv
|
|
|
|
pwgen
|
|
|
|
python3
|
2020-03-22 18:15:43 +00:00
|
|
|
rename
|
2018-09-14 10:06:34 +00:00
|
|
|
socat
|
|
|
|
sox
|
|
|
|
speedtest_cli
|
|
|
|
tcptraceroute
|
|
|
|
tor
|
|
|
|
torsocks
|
2019-03-28 04:33:47 +00:00
|
|
|
trash
|
2018-09-14 10:06:34 +00:00
|
|
|
unrar
|
|
|
|
unzip
|
|
|
|
vimpager
|
|
|
|
watch
|
|
|
|
wget
|
|
|
|
whatmask
|
2016-10-08 00:37:22 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
for PKG in $HOMEBREW_PKGS ; do
|
2019-11-18 12:35:21 +00:00
|
|
|
brew install --build-from-source $PKG
|
2016-10-08 00:37:22 +00:00
|
|
|
done
|