Created
May 19, 2016 13:15
-
-
Save bgunebakan/5914db57f9fc808dc6267545d318184c to your computer and use it in GitHub Desktop.
Umurmur server installer script for Raspberry Pi boards.
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/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