diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-07-20 16:25:51 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-07-20 16:25:51 +0200 |
commit | 5ac81170de4001049dbe61020601828e31f75f8a (patch) | |
tree | a5eceff6321a52abf5b6e077b1b3d0a294da534b /installer | |
parent | 057b6cac681aeb9831b8d45816629af8d4dbda24 (diff) | |
download | mmbtools-aux-5ac81170de4001049dbe61020601828e31f75f8a.tar.gz mmbtools-aux-5ac81170de4001049dbe61020601828e31f75f8a.tar.bz2 mmbtools-aux-5ac81170de4001049dbe61020601828e31f75f8a.zip |
debian installer: add libsodium
Diffstat (limited to 'installer')
-rw-r--r-- | installer/debian.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/installer/debian.sh b/installer/debian.sh index 78ed24b..a9a0577 100644 --- a/installer/debian.sh +++ b/installer/debian.sh @@ -104,6 +104,14 @@ make sudo make install popd +echo -e "$GREEN Installing libsodium $NORMAL" +wget https://download.libsodium.org/libsodium/releases/libsodium-0.6.1.tar.gz +tar -f libsodium-0.6.1.tar.gz -x +pushd libsodium-0.6.1 +./configure +make +sudo make install +popd echo -e "$GREEN Installing ZeroMQ $NORMAL" wget http://download.zeromq.org/zeromq-4.0.4.tar.gz |