Created
December 9, 2020 14:38
-
-
Save UndeRus/b2574d04376ab2ef36ee7433127e63ce to your computer and use it in GitHub Desktop.
build murmur with grpc on ubuntu
This file contains 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
#!/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