-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomebrew_install.sh
More file actions
24 lines (19 loc) · 957 Bytes
/
homebrew_install.sh
File metadata and controls
24 lines (19 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#
# Install Homebrew packages
# Check for Homebrew
if test ! $(which brew)
then
echo "Installing Homebrew for you."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
echo "***************************************************************************************************"
echo "Installng packages:"
echo "***************************************************************************************************"
brew install brew-cask geoip libevent mongodb node phantomjs rabbitmq readline ruby-build wget autoconf \
elasticsearch git memcached mysql openssl pkg-config rbenv redis htop-osx ffmpeg cowsay \
diff-so-fancy wget elixir
echo "***************************************************************************************************"
echo "Complete!"
echo "***************************************************************************************************"
exit 0