mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
25 lines
703 B
Bash
25 lines
703 B
Bash
#!/bin/sh -e
|
|
|
|
. "$(dirname "$0")/../../common-script.sh"
|
|
|
|
installDepend() {
|
|
case $PACKAGER in
|
|
pacman)
|
|
if ! command_exists yay; then
|
|
echo "Installing yay as AUR helper..."
|
|
sudo "$PACKAGER" -S --needed --noconfirm base-devel
|
|
cd /opt && sudo git clone https://aur.archlinux.org/yay-git.git && sudo chown -R "$USER": ./yay-git
|
|
cd yay-git && makepkg --noconfirm -si
|
|
echo "Yay installed"
|
|
else
|
|
echo "Aur helper already installed"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Unsupported package manager: $PACKAGER"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
checkEnv
|
|
installDepend |