15 lines
475 B
Bash
Executable File
15 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
##makedesc: Install wine (latest) + ppa (focal)
|
|
|
|
echo
|
|
echo "==============================================="
|
|
echo "Installing wine (latest)..."
|
|
echo "==============================================="
|
|
echo
|
|
|
|
sudo dpkg --add-architecture i386
|
|
wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
|
|
sudo add-apt-repository -y 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
|
|
sudo apt install -y --autoremove winehq-stable
|
|
wine --version
|