From 9bd22632bbe61967d8fcff5fe3d6f40d3b3d97e1 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 8 Apr 2016 02:13:17 +0100 Subject: [PATCH] Basic brew setup --- brew.sh | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 brew.sh diff --git a/brew.sh b/brew.sh new file mode 100755 index 0000000..c92ad9c --- /dev/null +++ b/brew.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env zsh + +# Install Homebrew stuff + +# update brew, and upgrade already installed formulae +brew update +brew upgrade + +# Install GNU coreutils, (OS X ships with outdated versions) +brew install coreutils +ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum + +# Install more system utilities +brew install moreutils findutils +# Install GNU `sed` +brew install gnu-sed --with-default-names + +# Install wget with IRI support +brew install wget --with-iri + +# Install more recent versions of some OS X tools. +brew install vim --override-system-vi +brew install homebrew/dupes/grep +brew install homebrew/dupes/openssh + +# Install other useful utilities +brew install ack +brew install git +brew install git-lfs +brew install imagemagick --with-webp +brew install lua +brew install lynx +brew install p7zip +brew install xz +brew install zopfli + +# Remove outdated versions from the Cellar +brew cleanup