I faced the same problem of endless dependencies installing winehq-* on my Ubuntu 18.04.2 (upgraded from ubuntu 16.04). After lots of googling and trying out what worked for me at the end was to build wine locally, which was way faster than I thought.
So here how I done it: (Token from [winehq official wiki][1])
1. clone:
git clone git://source.winehq.org/git/wine.git ~/wine-dirs/wine-source
2. build 64-bit version:
cd ~/wine-dirs/wine-build/
../wine-source/configure --enable-win64
make
DO NOT INSTALL (32-bit version should be installed first)
3. build 32-bit verions:
cd ~/wine-dirs/wine32-build/
PKG_CONFIG_PATH=/path/to/pkgconfig ../wine-source/configure --with-wine64=../wine64-build
make
PKG_CONFIG_PATH should point to the location of the 32 bit pkgconfig files, probably /usr/lib or /usr/lib32.
**DEPENDECIES**:
**libfaudio**
1. depends on SDL2-2.0.9 (follow [instruction][2])
2. clone
https://github.com/FNA-XNA/FAudio
3. build
cd build_faudio/
cmake ../FAudio-master/
make -j 4
**i386 version of some libs**
1. sudo apt-get install libx11-dev libx11-dev:i386 [from][3]
2. sudo apt-get install libfreetype6-dev:i386 libfreetype6-dev [from][4]
[1]:
https://wiki.winehq.org/Building_Wine
[2]:
http://www.linuxfromscratch.org/blfs...edia/sdl2.html
[3]:
https://askubuntu.com/questions/1894...iles-not-found
[4]:
https://askubuntu.com/questions/1144...ype-using-wine
Bookmarks