Skip to content

Compiling mumble 1.4.0 on a debian testing (bullseye) system

Benedikt Hallinger edited this page Apr 21, 2021 · 4 revisions

Compiling mumble 1.4.0 on a debian testing (bullseye) system

ℹ️ NOTE: the pull request was merged into mumbles mainline, so you can use mumbles main GIT repository. :information_source: This guide may be out of date. The mumble build instructions can be found here: https://github.com/mumble-voip/mumble/tree/master/docs/dev/build-instructions


Install prerequisites as root:

apt-get install build-essential pkg-config qttools5-dev g++-multilib libssl-dev protobuf-c-compiler libpoco-dev
apt-get install libluajit-5.1-dev protobuf-c-compiler libprotobuf-c-dev libssl-dev libopus-dev libev-dev

Build as ordinary user:

# Get GIT source (needed only the first time)
git clone https://github.com/mumble-voip/mumble

# update repo
cd mumble
git pull

# Build
[ -d build ] && rm -rf build
mkdir build
cd build
cmake ..
make clean && make

After that, install fgcom-mumble trough mumbles plugin dialog. Then activate the plugin and connect to the server. You should be ready to go!