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

@ -346,15 +346,12 @@ sudo apt-get install \
#### Fedora #### Fedora
**Note that sqlcipher is not included in all versions of Fedora yet.** To install FFmpeg, the [RPM Fusion](https://rpmfusion.org/) repo is required.
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.**
```bash ```bash
sudo dnf group install "Development Tools" "C Development Tools and Libraries" sudo dnf group install "Development Tools" "C Development Tools and Libraries"
# (can also use sudo dnf install @"Development Tools") # (can also use):
# sudo dnf install @"Development Tools" @"C Development Tools and Libraries"
sudo dnf install \ sudo dnf install \
autoconf \ autoconf \
automake \ automake \
@ -372,13 +369,13 @@ sudo dnf install \
openssl-devel \ openssl-devel \
opus-devel \ opus-devel \
qrencode-devel \ qrencode-devel \
qt5-devel \
qt5-linguist \ qt5-linguist \
qt5-qtsvg \ qt5-qtsvg \
qt5-qtsvg-devel \ qt5-qtsvg-devel \
qt-creator \ qt-creator \
qt-devel \
qt-doc \ qt-doc \
qtsingleapplication \ qtsingleapplication-qt5 \
sqlcipher \ sqlcipher \
sqlcipher-devel sqlcipher-devel
``` ```