From 92e99b6ee20d5b5b0107e094a4df8d704070a9ba Mon Sep 17 00:00:00 2001 From: Eamonn Rea Date: Wed, 8 Mar 2023 20:05:36 +0000 Subject: [PATCH] Steam Deck: Remove wget dependency (#758) --- steamtinkerlaunch | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/steamtinkerlaunch b/steamtinkerlaunch index 423ecaf3..8b803165 100755 --- a/steamtinkerlaunch +++ b/steamtinkerlaunch @@ -6,7 +6,7 @@ PREFIX="/usr" PROGNAME="SteamTinkerLaunch" NICEPROGNAME="Steam Tinker Launch" -PROGVERS="v12.12.20230308-1" +PROGVERS="v12.12.20230309-1" PROGCMD="${0##*/}" SHOSTL="stl" GHURL="https://github.com" @@ -22882,15 +22882,11 @@ function checkSteamDeckDependencies { fi } - # if this really changes, it could be grepped directly from /etc/pacman.d/mirrorlist as well: - SDREPO="https://steamdeck-packages.steamos.cloud/archlinux-mirror/extra/os/x86_64/" + # if this really changes, it could be grepped directly from /etc/pacman.d/mirrorlist as well: (was previously used for wget, keeping commented in case we need it in future) + #SDREPO="https://steamdeck-packages.steamos.cloud/archlinux-mirror/extra/os/x86_64/" # ARCHURL="https://archlinux.org/packages/community/x86_64" ARCHARCHIVEURL="https://archive.archlinux.org/packages" - - WGETVERS="1.21.2-1" - WGETFILE="$WGET-$WGETVERS-x86_64.pkg.tar.zst" - WGETURL="$SDREPO/$WGETFILE" INNOEXTRACTVERS="1.9-7" INNOEXTRACTFILE="$INNOEXTRACT-$INNOEXTRACTVERS-x86_64.pkg.tar.zst" @@ -22902,7 +22898,6 @@ function checkSteamDeckDependencies { printf '\n' - installDependencyVersionFromURL "$WGET" "$WGETFILE" "$STLDEPS" "$WGETURL" || steamDeckInstallFail installDependencyVersionFromURL "$INNOEXTRACT" "$INNOEXTRACTFILE" "$STLDEPS" "$INNOEXTRACTURL" || steamDeckInstallFail installDependencyVersionFromURL "$CABEXTRACT" "$CABEXTRACTFILE" "$STLDEPS" "$CABEXTRACTURL" || steamDeckInstallFail