forked from SixArm/sixarm_brew_install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew-install-our-stacks-with-prompts.sh
executable file
·54 lines (40 loc) · 1.17 KB
/
brew-install-our-stacks-with-prompts.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
#
# brew-install-our-tech-packages-manually.sh
#
# Use Homebrew to install our favorite tech-related packages
# that may need to be installed manually because of passwords,
# or moving files, or more-complex issues that need a human.
#
##
# Update - this is always the first step
brew update
# Emacs editor.
sudo rm /usr/bin/emacs &&
sudo rm -rf /usr/share/emacs &&
brew install emacs --cocoa --srgb --use-git-head --HEAD &&
ls -1 /usr/local/Cellar/emacs/*/bin/emacs |
tail -1 |
xargs -I{} sudo ln -sf "{}" /usr/bin/emacs
## Networking
# nmap network mapper is a security scanner
brew cask install nmap
# Wireshark network protocol analyzer
brew cask install wireshark
## Programming
# Netbeans Java IDE
brew cask install netbeans
# Java
brew cask install caskroom/versions/java9
brew cask install caskroom/versions/java8
brew cask install caskroom/versions/java7
# R statistics programming language
brew cask install r
## Deployments
# Vagrant lightweight, reproducible, portable development environments
brew cask install vagrant
# Heroku hosting utilities
brew cask install heroku-toolbelt
## Cleanup - this is always the last thing to do
brew cleanup
brew cask cleanu