mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
44d9360448
* Refactored + removed bashisms - revieved all packages - changed the structure to have synergy with other scripts - updated dnf & zypper commands - added nala * use apt-get instead of apt Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com> * small refactor (#3) Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com> * apt-get + quote escalation --------- Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com> Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
102 lines
4.1 KiB
Bash
Executable File
102 lines
4.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
installDepend() {
|
|
# Check for dependencies
|
|
DEPENDENCIES='wine dbus'
|
|
printf "%b\n" "${YELLOW}Installing dependencies...${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
#Check for multilib
|
|
if ! grep -q "^\s*$$multilib$$" /etc/pacman.conf; then
|
|
echo "[multilib]" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
|
echo "Include = /etc/pacman.d/mirrorlist" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
|
"$ESCALATION_TOOL" "$PACKAGER" -Syu
|
|
else
|
|
printf "%b\n" "${GREEN}Multilib is already enabled.${RC}"
|
|
fi
|
|
|
|
DISTRO_DEPS="gnutls lib32-gnutls base-devel gtk2 gtk3 lib32-gtk2 lib32-gtk3 libpulse lib32-libpulse alsa-lib lib32-alsa-lib \
|
|
alsa-utils alsa-plugins lib32-alsa-plugins alsa-lib lib32-alsa-lib giflib lib32-giflib libpng lib32-libpng \
|
|
libldap lib32-libldap openal lib32-openal libxcomposite lib32-libxcomposite libxinerama lib32-libxinerama \
|
|
ncurses lib32-ncurses vulkan-icd-loader lib32-vulkan-icd-loader ocl-icd lib32-ocl-icd libva lib32-libva \
|
|
gst-plugins-base-libs lib32-gst-plugins-base-libs sdl2"
|
|
|
|
$AUR_HELPER -S --needed --noconfirm "$DEPENDENCIES" $DISTRO_DEPS
|
|
;;
|
|
apt-get|nala)
|
|
DISTRO_DEPS="libasound2 libsdl2 wine64 wine32"
|
|
|
|
"$ESCALATION_TOOL" "$PACKAGER" update
|
|
"$ESCALATION_TOOL" dpkg --add-architecture i386
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y software-properties-common
|
|
"$ESCALATION_TOOL" apt-add-repository contrib -y
|
|
"$ESCALATION_TOOL" "$PACKAGER" update
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y "$DEPENDENCIES" $DISTRO_DEPS
|
|
;;
|
|
dnf)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y
|
|
"$ESCALATION_TOOL" "$PACKAGER" config-manager --enable fedora-cisco-openh264 -y
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y $DEPENDENCIES
|
|
;;
|
|
zypper)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -n install $DEPENDENCIES
|
|
;;
|
|
*)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y $DEPENDENCIES
|
|
;;
|
|
esac
|
|
}
|
|
|
|
installAdditionalDepend() {
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
DISTRO_DEPS='steam lutris goverlay'
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm $DISTRO_DEPS
|
|
;;
|
|
apt-get|nala)
|
|
version=$(git -c 'versionsort.suffix=-' ls-remote --tags --sort='v:refname' https://github.com/lutris/lutris |
|
|
grep -v 'beta' |
|
|
tail -n1 |
|
|
cut -d '/' --fields=3)
|
|
|
|
version_no_v=$(echo "$version" | tr -d v)
|
|
curl -sSLo "lutris_${version_no_v}_all.deb" "https://github.com/lutris/lutris/releases/download/${version}/lutris_${version_no_v}_all.deb"
|
|
|
|
printf "%b\n" "${YELLOW}Installing Lutris...${RC}"
|
|
"$ESCALATION_TOOL" "$PACKAGER" update
|
|
"$ESCALATION_TOOL" "$PACKAGER" install ./lutris_${version_no_v}_all.deb
|
|
|
|
rm lutris_${version_no_v}_all.deb
|
|
|
|
printf "%b\n" "${GREEN}Lutris Installation complete.${RC}"
|
|
printf "%b\n" "${YELLOW}Installing steam...${RC}"
|
|
|
|
if lsb_release -i | grep -qi Debian; then
|
|
"$ESCALATION_TOOL" apt-add-repository non-free -y
|
|
"$ESCALATION_TOOL" "$PACKAGER" install steam-installer -y
|
|
else
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y steam
|
|
fi
|
|
;;
|
|
dnf)
|
|
DISTRO_DEPS='steam lutris'
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y $DISTRO_DEPS
|
|
;;
|
|
zypper)
|
|
# Flatpak
|
|
DISTRO_DEPS='lutris'
|
|
"$ESCALATION_TOOL" "$PACKAGER" -n install $DISTRO_DEPS
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
checkEnv
|
|
checkAURHelper
|
|
checkEscalationTool
|
|
installDepend
|
|
installAdditionalDepend
|