1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

docs(INSTALL): update Fedora instructions

- Change "RPMFusion" to "RPM Fusion"
- Remove sqlcipher note, as all current Fedora 29+ include it
- Add note about RPM Fusion being required to install ffmpeg
- Update `dnf` commands and package names for Fedora 30
This commit is contained in:
Frank Dana 2019-08-27 17:50:06 -04:00 committed by FeRD (Frank Dana)
parent bb26d4a086
commit f416cdac99

View File

@ -155,7 +155,7 @@ pacman -S qtox
#### Fedora
qTox is available in the [RPMFusion](https://rpmfusion.org/) repo, to install:
qTox is available in the [RPM Fusion](https://rpmfusion.org/) repo, to install:
```bash
dnf install qtox
@ -346,15 +346,12 @@ sudo apt-get install \
#### Fedora
**Note that sqlcipher is not included in all versions of Fedora yet.**
As of writing this section (November 2016), Fedora 25 ships sqlcipher, but
Fedora 24 and older don't ship it yet.
**This means that if you can't install sqlcipher from repositories, you'll
have to compile it yourself, otherwise compiling qTox will fail.**
To install FFmpeg, the [RPM Fusion](https://rpmfusion.org/) repo is required.
```bash
sudo dnf groupinstall "Development Tools" "C Development Tools and Libraries"
# (can also use sudo dnf install @"Development Tools")
sudo dnf group install "Development Tools" "C Development Tools and Libraries"
# (can also use):
# sudo dnf install @"Development Tools" @"C Development Tools and Libraries"
sudo dnf install \
autoconf \
automake \
@ -372,13 +369,13 @@ sudo dnf install \
openssl-devel \
opus-devel \
qrencode-devel \
qt5-devel \
qt5-linguist \
qt5-qtsvg \
qt5-qtsvg-devel \
qt-creator \
qt-devel \
qt-doc \
qtsingleapplication \
qtsingleapplication-qt5 \
sqlcipher \
sqlcipher-devel
```