2024-09-20 05:01:43 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
. ../common-script.sh
|
|
|
|
|
|
|
|
installLinutil() {
|
|
|
|
printf "%b\n" "${YELLOW}Installing Linutil...${RC}"
|
|
|
|
case "$PACKAGER" in
|
|
|
|
pacman)
|
|
|
|
printf "%b\n" "-----------------------------------------------------"
|
|
|
|
printf "%b\n" "Select the package to install:"
|
|
|
|
printf "%b\n" "1. ${CYAN}linutil${RC} (stable release compiled from source)"
|
|
|
|
printf "%b\n" "2. ${CYAN}linutil-bin${RC} (stable release pre-compiled)"
|
|
|
|
printf "%b\n" "3. ${CYAN}linutil-git${RC} (compiled from the latest commit)"
|
|
|
|
printf "%b\n" "-----------------------------------------------------"
|
|
|
|
printf "%b" "Enter your choice: "
|
|
|
|
read -r choice
|
|
|
|
case $choice in
|
2024-09-30 21:50:14 +01:00
|
|
|
1) "$AUR_HELPER" -S --needed --noconfirm linutil ;;
|
|
|
|
2) "$AUR_HELPER" -S --needed --noconfirm linutil-bin ;;
|
|
|
|
3) "$AUR_HELPER" -S --needed --noconfirm linutil-git ;;
|
2024-09-20 05:01:43 +01:00
|
|
|
*)
|
|
|
|
printf "%b\n" "${RED}Invalid choice:${RC} $choice"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
printf "%b\n" "${GREEN}Installed successfully.${RC}"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
printf "%b\n" "${RED}There are no official packages for your distro.${RC}"
|
2024-09-22 17:01:10 +01:00
|
|
|
printf "%b" "${YELLOW}Do you want to install the crates.io package? (y/N): ${RC}"
|
2024-09-20 05:01:43 +01:00
|
|
|
read -r choice
|
|
|
|
case $choice in
|
|
|
|
y|Y)
|
|
|
|
if ! command_exists cargo; then
|
|
|
|
printf "%b\n" "${YELLOW}Installing rustup...${RC}"
|
|
|
|
case "$PACKAGER" in
|
|
|
|
pacman)
|
2024-10-24 20:55:56 +01:00
|
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm curl rustup man-db
|
2024-09-20 05:01:43 +01:00
|
|
|
;;
|
2024-09-28 19:52:51 +01:00
|
|
|
dnf)
|
2024-10-24 20:55:56 +01:00
|
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y curl rustup man-pages man-db man
|
2024-09-28 19:52:51 +01:00
|
|
|
;;
|
2024-09-20 05:01:43 +01:00
|
|
|
zypper)
|
|
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -n curl gcc make
|
2024-09-28 19:52:51 +01:00
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
2024-09-20 05:01:43 +01:00
|
|
|
. $HOME/.cargo/env
|
|
|
|
;;
|
|
|
|
*)
|
2024-09-28 19:52:51 +01:00
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
|
|
. $HOME/.cargo/env
|
2024-09-20 05:01:43 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
rustup default stable
|
|
|
|
cargo install --force linutil_tui
|
|
|
|
printf "%b\n" "${GREEN}Installed successfully.${RC}"
|
2024-10-24 20:55:56 +01:00
|
|
|
installExtra
|
2024-09-20 05:01:43 +01:00
|
|
|
;;
|
|
|
|
*) printf "%b\n" "${RED}Linutil not installed.${RC}" ;;
|
|
|
|
esac
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2024-10-24 20:55:56 +01:00
|
|
|
installExtra() {
|
|
|
|
printf "%b\n" "${YELLOW}Installing the manpage...${RC}"
|
|
|
|
"$ESCALATION_TOOL" mkdir -p /usr/share/man/man1
|
|
|
|
curl 'https://raw.githubusercontent.com/ChrisTitusTech/linutil/refs/heads/main/man/linutil.1' | "$ESCALATION_TOOL" tee '/usr/share/man/man1/linutil.1' > /dev/null
|
|
|
|
printf "%b\n" "${YELLOW}Creating a Desktop Entry...${RC}"
|
|
|
|
"$ESCALATION_TOOL" mkdir -p /usr/share/applications
|
|
|
|
curl 'https://raw.githubusercontent.com/ChrisTitusTech/linutil/refs/heads/main/linutil.desktop' | "$ESCALATION_TOOL" tee /usr/share/applications/linutil.desktop > /dev/null
|
|
|
|
printf "%b\n" "${GREEN}Done.${RC}"
|
|
|
|
}
|
|
|
|
|
2024-09-20 05:01:43 +01:00
|
|
|
checkEnv
|
|
|
|
checkEscalationTool
|
|
|
|
checkAURHelper
|
2024-09-28 19:52:51 +01:00
|
|
|
installLinutil
|