Skip to content

Instantly share code, notes, and snippets.

@UndeRus
Created December 9, 2020 14:38
Show Gist options
  • Save UndeRus/b2574d04376ab2ef36ee7433127e63ce to your computer and use it in GitHub Desktop.
Save UndeRus/b2574d04376ab2ef36ee7433127e63ce to your computer and use it in GitHub Desktop.
build murmur with grpc on ubuntu
#!/bin/bash -e
rm -r mumble-build-new
sudo apt-get install build-essential fakeroot devscripts quilt
sudo apt-get build-dep mumble-server
mkdir mumble-build-new
pushd mumble-build-new
apt-get source mumble-server
SRC=`find . -maxdepth 1 -type d -name '*mumble*' -print -quit`
pushd $SRC
vim debian/rules
# Add "CONFIG*=grpc \" after "CONFIG*=c++11 \"
debuild -b -uc -us -j3
popd
popd
# Deb packages are in mumble-build-new path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment