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

73 lines
713 B
Bash
Raw Normal View History

2016-10-08 00:37:22 +00:00
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
HOMEBREW_PKGS="
autoconf
automake
bash-completion
bash-git-prompt
bonnie++
byobu
cmake
coreutils
curl
daemontools
docker
docker-compose
docker-machine
duplicity
ffmpeg
fish
flac
geoip
ghc
gist
git
gnupg
gnupg2
go
gpg-agent
2017-01-09 02:51:33 +00:00
graphviz
httpie
2016-10-08 00:37:22 +00:00
homebrew/dupes/rsync
irssi
jq
lame
mobile-shell
mtr
mutt
nmap
node
pbzip2
2017-09-28 03:22:20 +00:00
pgpdump
2016-10-08 00:37:22 +00:00
pinentry-mac
protobuf
pv
pwgen
python3
socat
sox
speedtest_cli
syncthing
tcptraceroute
terraform
tor
torsocks
unrar
unzip
vimpager
watch
wget
whatmask
2016-10-08 04:04:55 +00:00
corelocationcli
2016-10-18 16:20:10 +00:00
heroku
2016-10-27 18:20:01 +00:00
offlineimap
2016-10-18 16:20:10 +00:00
postgres
2016-10-08 00:37:22 +00:00
"
for PKG in $HOMEBREW_PKGS ; do
brew install $PKG
done