-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
33 lines (23 loc) · 701 Bytes
/
Brewfile
File metadata and controls
33 lines (23 loc) · 701 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
25
26
27
28
29
30
31
# Make sure we’re using the latest Homebrew
update
# Upgrade any already-installed formulae
upgrade
# Brewfile
install openssl
link --force openssl
# Install GNU core utilities (those that come with OS X are outdated)
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
install coreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
install findutils
# Install wget with IRI support
install wget --enable-iri
# Install more recent versions of some OS X tools
install macvim --override-system-vi
install homebrew/dupes/grep
# Install scala, sbt
install scala
install sbt
install parallel
# Remove outdated versions from the cellar
cleanup