2024-07-15 20:00:04 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2024-08-15 07:13:56 +01:00
|
|
|
. ../common-script.sh
|
2024-07-28 16:32:05 +01:00
|
|
|
|
2024-07-13 02:57:34 +01:00
|
|
|
# Check if the home directory and linuxtoolbox folder exist, create them if they don't
|
|
|
|
LINUXTOOLBOXDIR="$HOME/linuxtoolbox"
|
|
|
|
|
2024-07-14 03:02:24 +01:00
|
|
|
if [ ! -d "$LINUXTOOLBOXDIR" ]; then
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${YELLOW}Creating linuxtoolbox directory: $LINUXTOOLBOXDIR${RC}"
|
2024-07-13 02:57:34 +01:00
|
|
|
mkdir -p "$LINUXTOOLBOXDIR"
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${GREEN}linuxtoolbox directory created: $LINUXTOOLBOXDIR${RC}"
|
2024-07-13 02:57:34 +01:00
|
|
|
fi
|
|
|
|
|
2024-07-19 11:34:09 +01:00
|
|
|
if [ ! -d "$LINUXTOOLBOXDIR/linutil" ]; then
|
|
|
|
echo -e "${YELLOW}Cloning linutil repository into: $LINUXTOOLBOXDIR/linutil${RC}"
|
|
|
|
git clone https://github.com/ChrisTitusTech/linutil "$LINUXTOOLBOXDIR/linutil"
|
2024-07-14 03:02:24 +01:00
|
|
|
if [ $? -eq 0 ]; then
|
2024-07-19 11:34:09 +01:00
|
|
|
echo -e "${GREEN}Successfully cloned linutil repository${RC}"
|
2024-07-13 02:57:34 +01:00
|
|
|
else
|
2024-07-19 11:34:09 +01:00
|
|
|
echo -e "${RED}Failed to clone linutil repository${RC}"
|
2024-07-13 02:57:34 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2024-07-19 11:34:09 +01:00
|
|
|
cd "$LINUXTOOLBOXDIR/linutil" || exit
|
2024-07-13 02:57:34 +01:00
|
|
|
|
|
|
|
installDepend() {
|
|
|
|
## Check for dependencies.
|
|
|
|
DEPENDENCIES='tar tree multitail tldr trash-cli unzip cmake make jq'
|
2024-07-15 22:00:28 +01:00
|
|
|
echo -e "${YELLOW}Installing dependencies...${RC}"
|
2024-07-13 02:57:34 +01:00
|
|
|
case $PACKAGER in
|
|
|
|
pacman)
|
|
|
|
if ! grep -q "^\s*\[multilib\]" /etc/pacman.conf; then
|
|
|
|
echo "[multilib]" | sudo tee -a /etc/pacman.conf
|
|
|
|
echo "Include = /etc/pacman.d/mirrorlist" | sudo tee -a /etc/pacman.conf
|
2024-08-12 15:46:48 +01:00
|
|
|
sudo "$PACKAGER" -Syu
|
2024-07-13 02:57:34 +01:00
|
|
|
else
|
|
|
|
echo "Multilib is already enabled."
|
|
|
|
fi
|
|
|
|
if ! command_exists yay && ! command_exists paru; then
|
|
|
|
echo "Installing yay as AUR helper..."
|
2024-08-12 15:46:48 +01:00
|
|
|
sudo "$PACKAGER" -S --needed --noconfirm base-devel
|
2024-07-14 03:02:24 +01:00
|
|
|
cd /opt && sudo git clone https://aur.archlinux.org/yay-git.git && sudo chown -R "$USER":"$USER" ./yay-git
|
2024-07-13 02:57:34 +01:00
|
|
|
cd yay-git && makepkg --noconfirm -si
|
|
|
|
else
|
|
|
|
echo "Aur helper already installed"
|
|
|
|
fi
|
|
|
|
if command_exists yay; then
|
|
|
|
AUR_HELPER="yay"
|
|
|
|
elif command_exists paru; then
|
|
|
|
AUR_HELPER="paru"
|
|
|
|
else
|
|
|
|
echo "No AUR helper found. Please install yay or paru."
|
|
|
|
exit 1
|
|
|
|
fi
|
2024-08-12 15:46:48 +01:00
|
|
|
"$AUR_HELPER" -S --needed --noconfirm "$DEPENDENCIES"
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
2024-07-30 21:29:36 +01:00
|
|
|
apt-get|nala)
|
2024-07-13 02:57:34 +01:00
|
|
|
COMPILEDEPS='build-essential'
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" update
|
2024-07-13 02:57:34 +01:00
|
|
|
sudo dpkg --add-architecture i386
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" update
|
2024-07-30 02:20:14 +01:00
|
|
|
sudo "$PACKAGER" install -y $DEPENDENCIES $COMPILEDEPS
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
dnf)
|
|
|
|
COMPILEDEPS='@development-tools'
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" update
|
|
|
|
sudo "$PACKAGER" config-manager --set-enabled powertools
|
2024-07-15 22:26:03 +01:00
|
|
|
sudo "$PACKAGER" install -y "$DEPENDENCIES" $COMPILEDEPS
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" install -y glibc-devel.i686 libgcc.i686
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
zypper)
|
|
|
|
COMPILEDEPS='patterns-devel-base-devel_basis'
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" refresh
|
2024-07-15 22:26:03 +01:00
|
|
|
sudo "$PACKAGER" --non-interactive install "$DEPENDENCIES" $COMPILEDEPS
|
2024-07-14 03:02:24 +01:00
|
|
|
sudo "$PACKAGER" --non-interactive install libgcc_s1-gcc7-32bit glibc-devel-32bit
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
*)
|
2024-07-30 02:20:14 +01:00
|
|
|
sudo "$PACKAGER" install -y $DEPENDENCIES # Fixed bug where no packages found on debian-based
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
install_additional_dependencies() {
|
|
|
|
case $(command -v apt || command -v zypper || command -v dnf || command -v pacman) in
|
|
|
|
*apt)
|
2024-07-14 03:02:24 +01:00
|
|
|
# Add additional dependencies for apt if needed
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
*zypper)
|
2024-07-14 03:02:24 +01:00
|
|
|
# Add additional dependencies for zypper if needed
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
*dnf)
|
2024-07-14 03:02:24 +01:00
|
|
|
# Add additional dependencies for dnf if needed
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
*pacman)
|
2024-07-14 03:02:24 +01:00
|
|
|
# Add additional dependencies for pacman if needed
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
*)
|
2024-07-14 03:02:24 +01:00
|
|
|
# Add additional dependencies for other package managers if needed
|
2024-07-13 02:57:34 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
checkEnv
|
|
|
|
installDepend
|
2024-07-15 22:26:03 +01:00
|
|
|
install_additional_dependencies
|