mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
824 B
25 lines
824 B
#!/usr/bin/env bash |
|
|
|
if which apt-get; then |
|
sudo apt-get install \ |
|
git build-essential qt5-qmake qt5-default qttools5-dev-tools \ |
|
libqt5opengl5-dev libqt5svg5-dev libopenal-dev libopencv-dev \ |
|
libxss-dev qrencode libqrencode-dev libtool autotools-dev \ |
|
automake checkinstall check libopus-dev libvpx-dev libsodium-dev |
|
elif which pacman; then |
|
sudo pacman -S --needed \ |
|
git base-devel qt5 opencv openal libxss qrencode opus libvpx \ |
|
libsodium |
|
elif which dnf; then |
|
sudo dnf group install \ |
|
"Development Tools" |
|
sudo dnf install \ |
|
git qt-devel qt-doc qt-creator qt5-qtsvg opencv-devel \ |
|
openal-soft-devel libXScrnSaver-devel qrencode-devel |
|
else |
|
echo "Unknown package manager, attempting to compile anyways" |
|
fi |
|
|
|
./bootstrap.sh |
|
qmake |
|
make
|
|
|