mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-04-23 14:42:02 +02:00
install: add instruction to install libqt
GitLab: #1115 Change-Id: I4fca70cf6ae6f29f68981e357672ce6b3756246e
This commit is contained in:
parent
f9c61e4056
commit
267f48ea8c
1 changed files with 26 additions and 1 deletions
27
INSTALL.md
27
INSTALL.md
|
@ -13,9 +13,34 @@ So, you will need to get Qt 6.2 first. For this, there is 3 methods:
|
||||||
|
|
||||||
### Qt from https://jami.net (recommended)
|
### Qt from https://jami.net (recommended)
|
||||||
|
|
||||||
If your distribution is supported, we provide a Qt package (`libqt-jami`) on our repo. Follow instructions https://jami.net/download-jami-linux/ (but instead installing `jami` install `libqt-jami`).
|
If your distribution is supported, we provide a Qt package (libqt-jami) on our repo.
|
||||||
The files will be installed in `/usr/lib/libqt-jami`.
|
The files will be installed in `/usr/lib/libqt-jami`.
|
||||||
|
|
||||||
|
#### Install libqt-jami, Debian based
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends
|
||||||
|
curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null
|
||||||
|
sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/debian_<VERSION>/ jami main' > /etc/apt/sources.list.d/jami.list"
|
||||||
|
sudo apt-get update && sudo apt-get install jami
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Install libqt-jami, Ubuntu based
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt install gnupg dirmngr ca-certificates curl --no-install-recommends
|
||||||
|
curl -s https://dl.jami.net/public-key.gpg | sudo tee /usr/share/keyrings/jami-archive-keyring.gpg > /dev/null
|
||||||
|
sudo sh -c "echo 'deb [signed-by=/usr/share/keyrings/jami-archive-keyring.gpg] https://dl.jami.net/nightly/ubuntu_<VERSION>/ jami main' > /etc/apt/sources.list.d/jami.list"
|
||||||
|
sudo apt-get update && sudo apt-get install libqt-jami
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Install jami-libqt, Fedora based
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo dnf config-manager --add-repo https://dl.jami.net/nightly/fedora_<VERSION>/jami-nightly.repo
|
||||||
|
sudo dnf update && sudo dnf install jami-libqt
|
||||||
|
```
|
||||||
|
|
||||||
### Qt from your distribution
|
### Qt from your distribution
|
||||||
|
|
||||||
If Qt 6.2 is available, you can use the packages from your distribution:
|
If Qt 6.2 is available, you can use the packages from your distribution:
|
||||||
|
|
Loading…
Add table
Reference in a new issue