dotfiles/resources/brew.sh

39 lines
1006 B
Bash
Raw Normal View History

2011-09-05 12:19:31 -06:00
# Make sure were using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
echo "Dont forget to add $(brew --prefix coreutils)/libexec/gnubin to \$PATH."
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
# Install Bash 4
brew install bash
2014-04-14 23:26:13 -06:00
brew install scala
brew install sbt
2013-09-30 23:21:02 -06:00
brew install greadlink
2011-09-05 12:19:31 -06:00
# Install wget with IRI support
brew install wget --enable-iri
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
# Install everything else
2013-03-17 03:33:15 -06:00
brew install emacs
brew install git
2013-03-17 02:22:39 -06:00
brew install tmux
brew install nmap
brew install readline
brew install netcat
brew install reattach-to-user-namespace
2014-04-14 00:51:26 -06:00
brew install daemonize
ln -s /usr/local/Cellar/daemonize/1.7.4/sbin/daemonize /usr/local/bin/daemonize
brew install ngrep
2011-09-05 12:19:31 -06:00
# Remove outdated versions from the cellar
2013-03-17 02:22:39 -06:00
brew cleanup