30 lines
918 B
Plaintext
Raw Normal View History

2020-03-07 00:10:52 +00:00
#! /bin/bash
sudo_package_update
# This now installs a lot of language specific stuff from python, gradle, to go.
# Should consider pulling these into different recipes that are dependent on the environment
# that I wish to bootstrap. If not a dev environment, I can trim out some of this.
# Packages that are pretty much the same treatment or names in all systems
packages="tmux htop curl wget universal-ctags git tig pv jq fish mosh bash-completion neovim ripgrep fzf"
2020-03-07 00:10:52 +00:00
# Manager specific packages
case "$PACKAGE_MANAGER" in
"port")
# Non-standard packages
2025-01-16 12:50:09 -08:00
packages="$packages bash"
2020-03-07 00:10:52 +00:00
# Newer version of git with completion
packages="$packages git +bash_completion"
# Install packages
sudo_package "$packages"
;;
"apt-get")
packages="$packages build-essential vim"
# Install packages
sudo_package "$packages"
;;
esac