added support for ubuntu 20.04 LTS

This commit is contained in:
Rishon Jonathan R 2022-06-26 16:20:13 +05:30 committed by GitHub
parent b42f319f83
commit bd6d41e819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
echo "Setting up dependencies..."
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources
sudo mv winehq-focal.sources /etc/apt/sources.list.d/
sudo apt update
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo mv winehq.key /usr/share/keyrings/winehq-archive.key
sudo apt update
echo "\nInstalling wine 7.11 ...."
sudo apt install winehq-devel winetricks
echo "\nSetting up wine..."
winecfg
echo "\nDone!"