From 2aa2e45cf058d534f542a53b85c1a7b24870a61f Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Tue, 17 Jul 2018 15:26:31 +0200 Subject: [PATCH] Check for brew and use it to install packages. --- packages/os.sh | 1 + packages/packages.sh | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/packages/os.sh b/packages/os.sh index 94a925f..6ed60be 100644 --- a/packages/os.sh +++ b/packages/os.sh @@ -81,6 +81,7 @@ fi for pm in \ apt-get \ + brew \ pacaur \ pacman \ pip3 \ diff --git a/packages/packages.sh b/packages/packages.sh index 7248af1..e89032e 100755 --- a/packages/packages.sh +++ b/packages/packages.sh @@ -48,6 +48,24 @@ download() { # Actual package installation code from here +# macOS brew + +if has_tags pm:brew; then + brew update + brew install \ + coreutils \ + libarchive \ + tar \ + gzip \ + xz \ + jq \ + git \ + gnupg \ + rxvt-unicode \ + zsh \ + zsh-syntax-highlighting +fi + # Arch Linux if has_tags pm:pacman; then