mirror of
https://github.com/kremalicious/dotfiles.git
synced 2025-02-14 13:10:26 +01:00
28 lines
576 B
Bash
Executable File
28 lines
576 B
Bash
Executable File
#!/bin/bash
|
||
|
||
# Install Homebrew
|
||
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||
|
||
# Make sure we’re using the latest Homebrew
|
||
brew update
|
||
|
||
# Upgrade any already-installed formulae
|
||
brew upgrade
|
||
|
||
# Install what we need
|
||
brew install coreutils
|
||
brew install bash
|
||
brew install bash-completion
|
||
brew install git
|
||
brew install node
|
||
brew install wget
|
||
brew install gpg2
|
||
brew install mysql
|
||
brew install imagemagick
|
||
brew install GraphicsMagick
|
||
brew install android
|
||
brew install tor
|
||
|
||
# Link gpg to gpg2
|
||
ln -s /usr/local/bin/gpg2 /usr/local/bin/gpg
|