Skip to content

Instantly share code, notes, and snippets.

@vicival
Forked from bgunebakan/umurmur_raspi.sh
Created May 3, 2018 16:45
Show Gist options
  • Save vicival/12317c69398af6ea1028a52fbc4712d4 to your computer and use it in GitHub Desktop.
Save vicival/12317c69398af6ea1028a52fbc4712d4 to your computer and use it in GitHub Desktop.
Umurmur server installer script for Raspberry Pi boards.
#!/bin/sh
# umurmur_raspi . sh
#
# Copyright (c) 2016 Bilal Tonga
#
#
echo "building Dependencies . . . "
sudo apt-get install git
sudo apt-get install libconfig-dev
sudo apt-get install libprotobuf-c-dev
sudo apt-get install libpolarssl-dev
echo "GNU tools"
sudo apt-get install cmake
sudo apt-get install autotools-dev
sudo apt-get install autotools
sudo apt-get install autoconf
sudo apt-get install libtool
echo "building umurmur"
git clone https://github.com/umurmur/umurmur.git
cd umurmur
./autogen.sh
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment