Installers/allpac/install.sh

139 lines
4.2 KiB
Bash
Raw Normal View History

#!/bin/bash
mkdir -p "$HOME/.allpac/cache" "$HOME/.allpac/logs" "$HOME/.allpac/bin"
echo "We are about to write a new pkg.list"
echo "Do you want us to proceed?"
2024-01-08 14:43:29 -07:00
echo "(reply 'n' if you already have a pkg.list)"
read -p "Proceed? [Y/n] " -n 1 -r
echo
2024-01-08 14:43:29 -07:00
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo "Writing new pkg.list..."
sleep 2
2024-01-08 14:43:29 -07:00
touch ~/.allpac/pkg.list
echo "{}" > ~/.allpac/pkg.list
else
echo "Skipping writing new pkg.list..."
sleep 2
2024-01-08 14:43:29 -07:00
fi
go_version=$(go version 2>/dev/null)
required_version="go1.21.5"
2024-01-07 20:16:54 -07:00
echo "Checking if Go is installed..."
if [[ "$go_version" != *"$required_version"* ]]; then
echo "Required Go version is not installed."
2024-01-08 14:43:29 -07:00
read -p "Do you want to install Go? (this will also perform a general system update with pacman) [Y/n] " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo " "
echo "Running 'sudo pacman -Syu go' instead of 'pacman -Sy'..."
echo " "
echo "So, because the Arch Developers won't make Pacman alert you of this, I guess AllPac has to..."
echo " "
sleep 2
echo "Running 'pacman -Sy' syncs the package database, but doesn't update all the packages on the system"
2024-01-08 14:43:29 -07:00
echo "This can cause a lot of problems if something gets updated but something that depends on it doesn't."
echo " "
echo "It's called a 'Partial Upgrade' and it can break your system"
echo "If you wanna install a package and you don't use AllPac, always just run 'pacman -Syu {package}'"
echo " "
sleep 2
echo "On the other hand;"
echo "Running 'pacman -S' will install a package, but not update the package database. So you might not get the newest version. Which can be it's own issue."
echo " "
sleep 2
echo "That's all it took to explain the issue properly Scimmia..."
echo "Arch Linux Forums users/devs are toxic."
sleep 4
sudo pacman -Syu go
else
echo "Go not installed. Exiting."
exit 1
fi
fi
sleep 2
2024-01-07 20:16:54 -07:00
# Check if wget is installed
echo "Checking if wget is installed..."
if ! command -v wget &>/dev/null; then
echo "wget is not installed."
read -p "Do you want to install wget? [Y/n] " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
sudo pacman -Syu wget
else
echo "wget not installed. Exiting."
exit 1
fi
fi
sleep 2
echo "wget is installed!"
2024-01-07 20:16:54 -07:00
echo "Compatible Go version is installed!"
echo "Checking if Git is installed..."
if ! command -v git &>/dev/null; then
echo "Git is not installed."
read -p "Do you want to install Git? [Y/n] " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
sudo pacman -Syu git
else
echo "Git not installed. Exiting."
exit 1
fi
fi
sleep 2
2024-01-07 20:16:54 -07:00
echo "Git is installed!"
echo "Cloning AllPac Repository from Git..."
sleep 2
2024-01-07 20:16:54 -07:00
2024-01-08 14:43:29 -07:00
git clone https://git.pixelridgesoftworks.com/PixelRidge-Softworks/AllPac.git || { echo "Failed to clone repository. Exiting."; exit 1; }
2024-01-07 20:16:54 -07:00
echo "Descending into cloned repo..."
sleep 2
2024-01-08 14:43:29 -07:00
cd AllPac/cmd/ || { echo "Failed to change directory. Exiting."; exit 1; }
2024-01-07 20:16:54 -07:00
echo "Ensuring we have up to date dependencies..."
2024-01-08 14:43:29 -07:00
go mod tidy || { echo "Failed to tidy dependencies. Exiting."; exit 1; }
sleep 2
2024-01-07 20:16:54 -07:00
echo "Building binary..."
2024-01-08 14:43:29 -07:00
go build -o ~/.allpac/bin/allpac || { echo "Failed to build binary. Exiting."; exit 1; }
sleep 2
2024-01-07 20:16:54 -07:00
echo "Binary built!"
updater_url="https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Installers/raw/branch/main/allpac/update.sh"
2024-01-07 20:16:54 -07:00
echo "Downloading updater script..."
2024-01-08 14:43:29 -07:00
wget -O ~/.allpac/bin/allpac-updater.sh "$updater_url" || { echo "Failed to download updater script. Exiting."; exit 1; }
sleep 2
2024-01-07 20:16:54 -07:00
echo "Setting updater script permissions..."
chmod u+rwx ~/.allpac/bin/allpac-updater.sh
sleep 2
echo "Creating a script in /etc/profile.d/ to add AllPac to the system path and set up alias for all users..."
{
echo 'export PATH=$PATH:$HOME/.allpac/bin'
echo "alias allpac-update-system='$HOME/.allpac/bin/allpac-updater.sh'"
} | sudo tee -a /etc/profile.d/allpac.sh > /dev/null
echo "Making '/etc/profile.d/allpac.sh' executable..."
sudo chmod +x /etc/profile.d/allpac.sh
2024-01-07 20:16:54 -07:00
echo "Cleaning up..."
2024-01-08 14:43:29 -07:00
cd ../../ || exit
rm -rf AllPac
echo "AllPac setup complete. Please re-login (or restart the shell) to apply the changes."