This commit is contained in:
badim 2016-04-11 23:04:33 +03:00
parent d4ace86514
commit 20ba300ab8
1 changed files with 8 additions and 1 deletions

View File

@ -6,5 +6,12 @@ if [[ "$(uname)" == "Darwin" ]]; then
brew install zeromq --with-libsodium --HEAD
else
sudo apt-get update
sudo apt-get install libzmq3-dev
sudo apt-get install build-essential pkg-config
cd /
sudo curl -O http://download.zeromq.org/zeromq-4.1.4.tar.gz
sudo tar xf /zeromq-4.1.4.tar.gz
cd /zeromq-4.1.4
sudo ./configure --without-libsodium
sudo make
sudo make install
fi