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

83 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
# 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.
source $HOME/.profile
HOMEBREW_PKGS="
asciinema
autoconf
automake
bash-completion
bash-git-prompt
bonnie++
bwm-ng
byobu
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
irssi
jq
kubernetes-cli
lame
mosh
mtr
mutt
neovim
nmap
node
offlineimap
p7zip
par2
pbzip2
pgpdump
pinentry-mac
postgres
protobuf
pv
pwgen
python3
rust
socat
sox
speedtest_cli
syncthing
tcptraceroute
terraform
tor
torsocks
trash
unrar
unzip
vimpager
watch
wget
whatmask
yarn
"
for PKG in $HOMEBREW_PKGS ; do
brew install --build-from-source $PKG
done