1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
This commit is contained in:
Marcel 2014-09-03 14:52:09 +02:00
parent cd12f6bf34
commit 61d8c8e38e

View File

@ -90,27 +90,27 @@ git clone https://github.com/tux3/qTox.git qTox
The following steps assumes that you cloned the repository at "/home/user/qTox". If you decided to choose another location, replace corresponding parts. The following steps assumes that you cloned the repository at "/home/user/qTox". If you decided to choose another location, replace corresponding parts.
### GCC and Qt ### GCC, Qt, OpenCV and OpanAL Soft
Debian: Debian:
```bash ```bash
sudo apt-get install build-essential qt5-qmake qt5-default sudo apt-get install build-essential qt5-qmake qt5-default libopenal-dev libopencv-dev
``` ```
Ubuntu: Ubuntu:
```bash ```bash
sudo apt-get install build-essential qt5-qmake qt5-default sudo apt-get install build-essential qt5-qmake qt5-default libopenal-dev libopencv-dev
``` ```
Arch Linux: Arch Linux:
```bash ```bash
sudo pacman -S base-devel qt5 sudo pacman -S base-devel qt5 opencv openal
``` ```
Fedora: Fedora:
```bash ```bash
yum groupinstall "Development Tools" yum groupinstall "Development Tools"
yum install qt-devel qt-doc qt-creator yum install qt-devel qt-doc qt-creator opencv-devel openal-soft-devel
``` ```
### Tox Core ### Tox Core
@ -142,25 +142,3 @@ The script will automatically download and install Tox Core and libsodium to "/h
```bash ```bash
./bootstrap.sh # use -h or --help for more information ./bootstrap.sh # use -h or --help for more information
``` ```
### OpenCV and OpanAL Soft
Debian:
```bash
sudo apt-get install libopenal-dev libopencv-dev
```
Ubuntu:
```bash
sudo apt-get install libopenal-dev libopencv-dev
```
Arch Linux:
```bash
sudo pacman -S opencv openal
```
Fedora:
```bash
yum install opencv-devel openal-soft-devel
```