9 lines
265 B
Bash
Executable file
9 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wget -nc https://dl.winehq.org/wine-builds/winehq.key
|
|
sudo apt-key add winehq.key
|
|
rm winehq.key
|
|
|
|
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
|
|
sudo apt update
|
|
sudo apt install -y --install-recommends winehq-stable
|