generated from NickMatthews-1/WineStable
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These are no longer supported by WineHQ or by the developers of the distro.
- Loading branch information
1 parent
61631dc
commit 2ff7ac6
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|