osx/custompkg/root/etc/skel/Library/user-setup/100.install-homebrew-apps.sh

85 lines
1.1 KiB
Bash
Raw Normal View History

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.
2016-10-08 00:37:22 +00:00
source $HOME/.profile
HOMEBREW_PKGS="
2018-09-14 10:06:34 +00:00
asciinema
autoconf
automake
bash-completion
bash-git-prompt
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
corelocationcli
coreutils
curl
daemontools
docker
docker-compose
docker-machine
duplicity
ffmpeg
fish
flac
geoip
gist
git
gnupg
gnupg2
go
gpg-agent
graphviz
heroku
homebrew/dupes/rsync
httpie
httrack
2018-09-14 10:06:34 +00:00
irssi
jq
kubernetes-cli
lame
mosh
mtr
mutt
neovim
2018-09-14 10:06:34 +00:00
nmap
node
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
postgres
protobuf
pv
pwgen
python3
2020-03-22 18:15:43 +00:00
rename
2018-09-14 10:06:34 +00:00
rust
socat
sox
speedtest_cli
syncthing
tcptraceroute
terraform
tor
torsocks
trash
2018-09-14 10:06:34 +00:00
unrar
unzip
vimpager
watch
wget
whatmask
2019-11-18 12:37:05 +00:00
yarn
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