forked from thisiszeev/wine-installer
added support for ubuntu 20.04 LTS
This commit is contained in:
parent
b42f319f83
commit
bd6d41e819
|
@ -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!"
|
||||||
|
|
Loading…
Reference in New Issue