evilsocket / opensnitch

OpenSnitch is a GNU/Linux interactive application firewall inspired by Little Snitch.
GNU General Public License v3.0
9.92k stars 490 forks source link

Wiki update for Ubuntu 22.04 build issues #773

Closed mwigginsdev closed 1 year ago

mwigginsdev commented 1 year ago

On the compilation page, can a second be added for Ubuntu 22.04 notes similar to the fedora section?

I ran into a similar issue to the fedora problem on ubuntu 22.04, however symlinking did not fix it for me.

Error when running make from root directory:

lrelease: could not find a Qt installation of ''

The following resolved my issue:

#set env var for QT version
export QT_SELECT=qt5

#install qt tools which includes lrelease
sudo apt install qttools5-dev

I recommend either adding the above as an Ubuntu 22.04 note or adding qttools5-dev as a dependency in the "Installation from sources" section. The listed dependencies do include qttools5-dev-tools and qtbase5-dev-tools, but those packages do not appear to include lrelease when installed from the Ubuntu 22.04 multiverse repositories.

gustavo-iniguez-goya commented 1 year ago

Added. Thank you @mwigginsdev !