blob: b7a871b4a350dd5d062b4af644fd5c730d61d3df [file] [log] [blame]
#!/bin/bash
export JAVA_HOME=$(/usr/libexec/java_home)
if [ ! -d "$JAVA_HOME/include" ]; then
echo "
Looks like you're missing your 'include' directory. If you're using Mac OS X, You'll need to install the Java dev package.
- Navigate to http://goo.gl/D8lI
- Click the Java tab on the right
- Install the appropriate version and try again.
"
exit -1;
fi
#install zeromq
wget http://download.zeromq.org/historic/zeromq-2.1.7.tar.gz
tar -xzf zeromq-2.1.7.tar.gz
cd zeromq-2.1.7
./configure
make
sudo make install
#install jzmq (both native and into local maven cache)
git clone https://github.com/nathanmarz/jzmq.git
cd jzmq
./autogen.sh
./configure
make
sudo make install