Alternative Mumble server
Find a file
2016-05-01 17:30:32 +02:00
cmd/grumble go fmt 2016-03-25 22:05:23 -03:00
pkg Add message to pkg/mumbleproto/generate_main.go about crypto_modes field. 2016-03-29 01:35:39 +02:00
.gitignore grumble: move grumble cmd to 'cmd/grumble' instead of the source tree root. 2014-04-15 14:31:42 +02:00
AUTHORS AUTHORS: add Tim Cooper. 2016-05-01 17:30:32 +02:00
LICENSE Update LICENSE file. 2011-04-09 21:52:05 +02:00
README.markdown update golang URL 2016-03-25 21:56:51 -03:00

What is Grumble?

Grumble is an implementation of a server for the Mumble voice chat system. It is an alternative to Murmur, the typical Mumble server.

Compiling Grumble from source

You must have a Go 1 environment installed to build Grumble. Those are available at:

https://golang.org/dl/

Once Go is installed, you should set up a GOPATH to avoid clobbering your Go environment's root directory with third party packages.

Set up a GOPATH. On Unix, do something like this

$ export GOPATH=$HOME/gocode
$ mkdir -p $GOPATH

and on Windows, do something like this (for cmd.exe):

c:\> set GOPATH=%USERPROFILE\gocode
c:\> mkdir %GOPATH%

Then, it's time to install Grumble. The following line should do the trick:

$ go get mumble.info/grumble/cmd/grumble

And that should be it. Grumble has been built, and is available in $GOPATH/bin as 'grumble'.