mtsatellite/COMPILE.md
2017-09-05 18:22:10 +02:00

1.4 KiB

#HOWTO compile MTSatellite

To build MTSatellite a Go compiler 1.4 or better is needed.

Currently this is only tested on Debian Wheezy, Debian Jessie, Ubuntu Ubuntu Trusty Thar (14.04) and newer. Other flavors of GNU/Linux should work, too. Mac OS X may work. Problems with MS Windows are expected.

A quick and dirty way to produce the binaries of mtdbconverter, mtredisalize, mtseeder and mtwebmapper:

# Assuming you have a 64bit GNU/Linux system. For other systems take
# the corresponding version from https://golang.org/dl/
$ wget https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz

$ echo "d70eadefce8e160638a9a6db97f7192d8463069ab33138893ad3bf31b0650a79 go1.9.linux-amd64.tar.gz" | sha256sum -c -

$ tar xf go1.9.linux-amd64.tar.gz

$ mkdir -p gopath/{pkg,bin,src}

$ export GOROOT=`pwd`/go

$ export GOPATH=`pwd`/gopath

$ export PATH=$GOROOT/bin:$GOPATH/bin:$PATH

# On Debian Wheezy you have to install the LevelDB dev from Backports.
$ sudo apt-get install libleveldb-dev

$ go get -u bitbucket.org/s_l_teichmann/mtsatellite/cmd/mtdbconverter

$ go get -u bitbucket.org/s_l_teichmann/mtsatellite/cmd/mtredisalize

$ go get -u bitbucket.org/s_l_teichmann/mtsatellite/cmd/mtseeder

$ go get -u bitbucket.org/s_l_teichmann/mtsatellite/cmd/mtwebmapper

$ ls $GOPATH/bin
mtdbconverter  mtredisalize  mtseeder  mtwebmapper