Sha256: 5ae976c99fa714c437d31348eaf68afb7b8fade9c75d10ee9fcf07bf6e626e20

Contents?: true

Size: 544 Bytes

Versions: 2

Compression:

Stored size: 544 Bytes

Contents

#/bin/bash
set -ev

bundle install

sudo apt-get -qq update
sudo apt-get install libtool pkg-config build-essential autoconf automake wget 

git clone https://github.com/jedisct1/libsodium --branch stable
cd libsodium
./autogen.sh
./configure && make check
sudo make install
cd ..

VERSION="4.2.2"
BASE="zeromq-${VERSION}"
TARBALL="${BASE}.tar.gz"
wget https://github.com/zeromq/libzmq/releases/download/v$VERSION/$TARBALL
tar -xvf $TARBALL
cd $BASE
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig

bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ffi-rzmq-2.0.7 travis_build_script.sh
ffi-rzmq-2.0.6 travis_build_script.sh