add go and don't reinstall the packages each time
This commit is contained in:
parent
eb6eae1fde
commit
615d6e927b
@ -14,16 +14,39 @@ pacinstall fd
|
|||||||
pacinstall lazygit
|
pacinstall lazygit
|
||||||
pacinstall github-cli
|
pacinstall github-cli
|
||||||
pacinstall zellij
|
pacinstall zellij
|
||||||
|
pacinstall go
|
||||||
|
|
||||||
|
|
||||||
|
pacman -Q ${program} &> /dev/null
|
||||||
|
if [[ "$?" -ne "0" ]]; then
|
||||||
|
info "Installing sdl3_image"
|
||||||
|
pushd custom-packages/sdl3_image//
|
||||||
|
makepkg -si --noconfirm
|
||||||
|
popd
|
||||||
|
else
|
||||||
|
verbose "${program} already installed."
|
||||||
|
fi
|
||||||
|
|
||||||
|
pacman -Q ${program} &> /dev/null
|
||||||
|
if [[ "$?" -ne "0" ]]; then
|
||||||
|
info "Installing sdl3_image"
|
||||||
|
pushd custom-packages/sdl3_ttf/
|
||||||
|
makepkg -si --noconfirm
|
||||||
|
popd
|
||||||
|
else
|
||||||
|
verbose "${program} already installed."
|
||||||
|
fi
|
||||||
|
|
||||||
|
pacman -Q ${program} &> /dev/null
|
||||||
|
if [[ "$?" -ne "0" ]]; then
|
||||||
|
info "Installing sdl3_image"
|
||||||
|
pushd custom-packages/odin-git/
|
||||||
|
makepkg -si --noconfirm
|
||||||
|
popd
|
||||||
|
else
|
||||||
|
verbose "${program} already installed."
|
||||||
|
fi
|
||||||
|
|
||||||
pushd custom-packages/sdl3_image//
|
|
||||||
makepkg -si --noconfirm
|
|
||||||
popd
|
|
||||||
pushd custom-packages/sdl3_ttf/
|
|
||||||
makepkg -si --noconfirm
|
|
||||||
popd
|
|
||||||
pushd custom-packages/odin-git/
|
|
||||||
makepkg -si --noconfirm
|
|
||||||
popd
|
|
||||||
|
|
||||||
pacinstall ninja
|
pacinstall ninja
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user