Last active
December 16, 2015 06:28
-
-
Save TJkrusinski/5391524 to your computer and use it in GitHub Desktop.
zmq install ubuntu @3.2.2
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 | |
echo 'Installing ZMQ' | |
curl http://download.zeromq.org/zeromq-3.2.2.tar.gz > z.tar.gz | |
tar -xvzf z.tar.gz | |
cd zeromq-3.2.2 | |
apt-get -y install libtool autoconf automake uuid-dev | |
./configure | |
make | |
make install | |
ldconfig | |
echo 'Done installing ZMQ' | |
echo 'Cleaning up' | |
cd .. | |
rm -rf zeromq-3.2.2 | |
rm z.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment