Last active
November 13, 2015 11:38
-
-
Save Vaduz/126ebe67ae3c318383cf to your computer and use it in GitHub Desktop.
Install QT5 & Mumble server on Raspberry PI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install debian-keyring debian-archive-keyring | |
sudo echo "deb http://ftp.debian.org/debian/ wheezy-backports main" >> /etc/apt/sources.list | |
sudo echo "deb-src http://ftp.debian.org/debian/ wheezy-backports main" >> /etc/apt/sources.list | |
# If you get warning like: There is no public key available for the following key IDs: | |
# You can add the key by following commands | |
gpg --keyserver pgpkeys.mit.edu --recv-key $key | |
gpg -a --export $key | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install -t wheezy-backports qt5-default qt5-qmake libegl1-mesa libgles2-mesa | |
sudo apt-get install 'libqt5svg5*' qttools5-dev-tools | |
sudo apt-get install ice34-slice | |
git clone [email protected]:mumble-voip/mumble.git mumble-build | |
cd mumble-build | |
# See building instructions | |
# http://wiki.mumble.info/wiki/BuildingLinux | |
git submodule init | |
git submodule update | |
qmake -recursive main.pro CONFIG+=no-client | |
qmake QMAKE_CXX=g++-4.6 QMAKE_CC=gcc-4.6 -recursive main.pro CONFIG+=no-client | |
make release | |
sudo make install | |
cp scripts/murmur.init /etc/init.d/murmurd | |
update-rc.d murmur defaults 90 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment