linutil/tabs/system-setup/arch/paru-setup.sh

27 lines
819 B
Bash
Raw Normal View History

2024-08-15 22:23:21 +01:00
#!/bin/sh -e
2024-09-12 21:14:50 +01:00
. ../../common-script.sh
2024-08-15 22:23:21 +01:00
installDepend() {
2024-09-17 13:23:23 +01:00
case "$PACKAGER" in
2024-08-15 22:23:21 +01:00
pacman)
if ! command_exists paru; then
printf "%b\n" "${YELLOW}Installing paru as AUR helper...${RC}"
2024-08-23 14:12:47 +01:00
$ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm base-devel
cd /opt && $ESCALATION_TOOL git clone https://aur.archlinux.org/paru.git && $ESCALATION_TOOL chown -R "$USER": ./paru
2024-08-15 22:23:21 +01:00
cd paru && makepkg --noconfirm -si
printf "%b\n" "${GREEN}Paru installed${RC}"
2024-08-15 22:23:21 +01:00
else
printf "%b\n" "${GREEN}Paru already installed${RC}"
2024-08-15 22:23:21 +01:00
fi
;;
*)
printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}"
2024-08-15 22:23:21 +01:00
;;
esac
}
checkEnv
2024-08-23 14:12:47 +01:00
checkEscalationTool
installDepend