blob: 41b93f05fb18de4e264332f765fd72b301850813 [file] [log] [blame]
Alexander Afanasyevf3192eb2016-12-19 17:11:20 -08001#!/usr/bin/env bash
2set -e
3
4JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
7set -x
8
9if has OSX $NODE_LABELS; then
10 brew update
11 brew upgrade
12 brew install boost pkg-config cryptopp openssl
13 brew cleanup
14fi
15
16if has Ubuntu $NODE_LABELS; then
17 sudo apt-get -qq update
18 sudo apt-get -qq install build-essential pkg-config libboost-all-dev \
19 libcrypto++-dev libsqlite3-dev libssl-dev
20fi