~ salmonella-environment-setup (master) 2315595269591736a5c961716946986e9bff2122


commit 2315595269591736a5c961716946986e9bff2122
Author:     Mario Domenech Goulart <mario.goulart@gmail.com>
AuthorDate: Fri Oct 10 19:52:48 2014 -0300
Commit:     Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Fri Oct 10 19:52:48 2014 -0300

    debian-wheezy.sh: installation steps for nanomsg

diff --git a/debian-wheezy.sh b/debian-wheezy.sh
index db6a89c..7f24d89 100755
--- a/debian-wheezy.sh
+++ b/debian-wheezy.sh
@@ -231,3 +231,15 @@ sudo make install
 # -- Installing: /usr/local/lib/libglfw.so.3.0
 # -- Installing: /usr/local/lib/libglfw.so.3
 # -- Installing: /usr/local/lib/libglfw.so
+
+
+### nanomsg
+
+mkdir -p $tmpdir/nanomsg
+cd $tmpdir/nanomsg
+wget http://download.nanomsg.org/nanomsg-0.4-beta.tar.gz
+tar xzvf nanomsg-0.4-beta.tar.gz
+cd nanomsg-0.4-beta
+./configure --prefix=/usr/local
+make
+sudo make install
Trap