From 2ff7ac6c05716c7a26b1fa9542a17ff1bb6dbc07 Mon Sep 17 00:00:00 2001 From: Nick Matthews Date: Thu, 29 Dec 2022 23:52:40 -0500 Subject: [PATCH] Legacy Install Scripts These are no longer supported by WineHQ or by the developers of the distro. --- W7U21-NoSupport.sh | 27 +++++++++++++++++++++++++++ wine7fedora35.sh | 5 +++++ 2 files changed, 32 insertions(+) create mode 100644 W7U21-NoSupport.sh create mode 100644 wine7fedora35.sh diff --git a/W7U21-NoSupport.sh b/W7U21-NoSupport.sh new file mode 100644 index 0000000..6bf2f99 --- /dev/null +++ b/W7U21-NoSupport.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +#This enables 32bit architecture +sudo dpkg --add-architecture i386 + +#This downloads the security key +wget -nc https://dl.winehq.org/wine-builds/winehq.key + +#This moves the security key to the correct place +sudo mv winehq.key /usr/share/keyrings/winehq-archive.key + +#This adds WineHQ repository to the sources list +wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/impish/winehq-impish.sources + +#This adds the winehq repository for version 7 to the repository list +sudo mv winehq-impish.sources /etc/apt/sources.list.d + +#This updates everything +sudo apt update + +#This upgrades the packages +sudo apt upgrade + +#This installs wine version 7 +sudo apt install --install-recommends winehq-stable + +#Subject to GPLv3 License Copyright Nicolas Matthews 2022 diff --git a/wine7fedora35.sh b/wine7fedora35.sh new file mode 100644 index 0000000..6d8635e --- /dev/null +++ b/wine7fedora35.sh @@ -0,0 +1,5 @@ +sudo dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/35/winehq.repo + +dnf install winehq-stable + +