Check for brew and use it to install packages.
parent
855e4e8397
commit
2aa2e45cf0
|
@ -81,6 +81,7 @@ fi
|
||||||
|
|
||||||
for pm in \
|
for pm in \
|
||||||
apt-get \
|
apt-get \
|
||||||
|
brew \
|
||||||
pacaur \
|
pacaur \
|
||||||
pacman \
|
pacman \
|
||||||
pip3 \
|
pip3 \
|
||||||
|
|
|
@ -48,6 +48,24 @@ download() {
|
||||||
|
|
||||||
# Actual package installation code from here
|
# 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
|
# Arch Linux
|
||||||
|
|
||||||
if has_tags pm:pacman; then
|
if has_tags pm:pacman; then
|
||||||
|
|
Loading…
Reference in New Issue