-
Notifications
You must be signed in to change notification settings - Fork 24
Build instructions for Linux
Tobias Wellnitz edited this page Mar 3, 2017
·
13 revisions
- Make sure, you have installed the latest Go version and set the Go environment variables:
- $GOPATH
- $PATH=$PATH:$GOPATH/bin
If this is the first time you use go, I suggest to add them to your bash profile (vim $HOME/.profile
). For example:
```bash
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
```
-
Install apt packages:
$ sudo apt install pkg-config libsamplerate0 libsamplerate0-dev libopusfile-dev libopus-dev libportaudio2 portaudio19-dev
-
Download this repository
$ go get -d github.com/dh1tw/remoteAudio
-
Change into the repository's directory
$ cd $GOPATH/src/github.com/dh1tw/remoteAudio
-
Download and install go dependencies
$ make install-deps
-
Install the latest Protocol buffers compiler (>=3.0)
$ ./ci/install-protobuf.sh
-
Build remoteAudio
$ make build
-
Install remoteAudio on your Systems
$ make install