Created
November 16, 2016 19:44
-
-
Save derekjn/0edd5e4f6c0411b5582131c54b4fca34 to your computer and use it in GitHub Desktop.
Install ZeroMQ 4.2.0
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/bash | |
wget https://github.com/zeromq/libzmq/releases/download/v4.2.0/zeromq-4.2.0.tar.gz && \ | |
tar -xvf zeromq-4.2.0.tar.gz && \ | |
cd zeromq-4.2.0/ && \ | |
./autogen.sh && \ | |
./configure --enable-static --prefix=/usr && \ | |
make && \ | |
sudo make install && \ | |
sudo ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment