Skip to content

Commit

Permalink
Legacy Install Scripts
Browse files Browse the repository at this point in the history
These are no longer supported by WineHQ or by the developers of the distro.
  • Loading branch information
NickMatthews-1 authored Dec 30, 2022
1 parent 61631dc commit 2ff7ac6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
27 changes: 27 additions & 0 deletions W7U21-NoSupport.sh
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions wine7fedora35.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sudo dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/35/winehq.repo

dnf install winehq-stable


0 comments on commit 2ff7ac6

Please sign in to comment.