Created
June 7, 2012 20:28
-
-
Save dustismo/2891354 to your computer and use it in GitHub Desktop.
Install ZeroMQ java on ubuntu
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
sudo add-apt-repository ppa:chris-lea/zeromq | |
sudo add-apt-repository ppa:chris-lea/libpgm | |
sudo apt-get update | |
sudo apt-get install libzmq-dev libtool autoconf automake dpkg-dev debhelper libpgm-dev | |
sudo wget https://github.com/zeromq/jzmq/tarball/master | |
sudo tar -xzf master | |
sudo rm master | |
sudo cd zeromq* | |
sudo automake --add-missing | |
sudo autoreconf | |
sudo ./configure | |
sudo dpkg-buildpackage | |
sudo cd .. | |
sudo dpkg -i jzmq_*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment