add missing wine repo

This commit is contained in:
Hengi Fettlich 2019-08-19 19:36:09 +02:00 committed by HengiFettlich
parent aa69f141e2
commit a57c8a66ee

View File

@ -11,6 +11,23 @@ sudo wget -nc https://dl.winehq.org/wine-builds/winehq.key
# add wine repo key
sudo apt-key add winehq.key
if ![ lsb_release | grep -q -e "18.04" -e "18.10" -e "19.04"] then
echo "You need at least Ubuntu 18.04"
exit 1
fi
if [ lsb_release | grep -q -e "18.04"]; then
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
fi
if [ lsb_release | grep -q -e "18.10"]; then
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ cosmic main'
fi
if [ lsb_release | grep -q -e "19.04"]; then
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ disco main'
fi
sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport -y
sudo apt update