Created
November 10, 2015 09:00
-
-
Save ivan-loh/1f76af5f0368b0722d3d to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash | |
| sudo apt-get install libtool pkg-config build-essential automake autoconf uuid-dev | |
| wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.6.tar.gz | |
| tar xvzf libsodium-1.0.6.tar.gz | |
| cd libsodium-1.0.6 | |
| ./configure | |
| make && make check | |
| sudo make install | |
| wget http://download.zeromq.org/zeromq-4.1.3.tar.gz | |
| tar xvzf zeromq-4.1.3.tar.gz | |
| cd zeromq-4.1.3/ | |
| ./configure | |
| make && make check | |
| sudo make install |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ubuntu