diff options
Diffstat (limited to '')
-rwxr-xr-x | install.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 00000000..fb7a0d93 --- /dev/null +++ b/install.sh @@ -0,0 +1,17 @@ +#!/bin/sh +set -e -u + +any='gnupg htop nasm neovim sl the_silver_searcher tree' +brew="$any ddate git openssh" +pkg="$any curl ddate sudo zsh" +pacman="$any base-devel ctags gdb openssh zsh" + +homebrew='https://raw.githubusercontent.com/Homebrew/install/master/install' +if [ "$(uname)" = 'Darwin' ]; then + xcode-select --install || true + [ -f /usr/local/bin/brew ] || ruby -e "$(curl -fsSL "$homebrew")" + exec brew install $brew +fi + +[ -f /usr/local/sbin/pkg ] && exec pkg install $pkg +[ -f /usr/bin/pacman ] && pacman -Sy && exec pacman -S --needed $pacman |