40 lines
752 B
Bash
40 lines
752 B
Bash
brew_script=/tmp/brew_install.sh
|
|
|
|
curl -fsSL \
|
|
https://raw.githubusercontent.com/Homebrew/install/master/install \
|
|
> $brew_script
|
|
|
|
less $brew_script
|
|
|
|
read -p 'Execute brew install script? [y|N] ' prompt
|
|
|
|
if [ $prompt != "y" ]; then
|
|
exit 1;
|
|
fi
|
|
|
|
/usr/bin/ruby $brew_script
|
|
|
|
brew install ansible
|
|
brew install autoconf
|
|
brew install automake
|
|
brew install cmake
|
|
brew install erlang
|
|
brew install git
|
|
brew install gmp
|
|
brew install htop-osx
|
|
brew install imagemagick
|
|
brew install inkscape
|
|
brew install irssi
|
|
brew install jq
|
|
brew install leiningen
|
|
brew install mercurial
|
|
brew install openssl
|
|
brew install p7zip
|
|
brew install pkg-config
|
|
brew install taglib
|
|
brew install tesseract
|
|
brew install tmux
|
|
brew install watch
|
|
brew install xpdf
|
|
brew install xz
|