From 3ceac6ff6bad2dcfa6cb61abb78e651822868901 Mon Sep 17 00:00:00 2001 From: Zach Holman Date: Tue, 1 Dec 2015 12:01:01 -0500 Subject: [PATCH] Set up a brewfile --- Brewfile | 23 +++++++++++++++++++++++ homebrew/install.sh | 7 ------- 2 files changed, 23 insertions(+), 7 deletions(-) create mode 100644 Brewfile diff --git a/Brewfile b/Brewfile new file mode 100644 index 00000000000..2e7db11816c --- /dev/null +++ b/Brewfile @@ -0,0 +1,23 @@ +cask_args appdir: '/Applications' + +tap 'caskroom/cask' +tap 'homebrew/bundle' + +brew 'ack' +brew 'coreutils' +brew 'go' +brew 'grc' +brew 'imagemagick' +brew 'jp2a' +brew 'libcaca', args: ['with-imlib2'] +brew 'libgit2' +brew 'openssl' +brew 'node' +brew 'readline' +brew 'postgresql' +brew 'ruby-build' +brew 'rbenv' +brew 'roundup' +brew 'spark' +brew 'unrar' +brew 'youtube-dl' diff --git a/homebrew/install.sh b/homebrew/install.sh index ea066a25bcd..1921f008fbb 100755 --- a/homebrew/install.sh +++ b/homebrew/install.sh @@ -21,11 +21,4 @@ then fi -# Install homebrew bundle and cask -brew tap Homebrew/bundle -brew install caskroom/cask/brew-cask - -# Install homebrew packages -brew install grc coreutils spark - exit 0