blob: 9eac278a041ecee79abcd3679b7c3ba064b89e9c [file] [log] [blame]
Chengyu Fan27887552015-03-26 17:12:00 -06001#!/usr/bin/env bash
2set -e
3
4JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
7if has OSX $NODE_LABELS; then
8 set -x
9 brew update
10 brew upgrade
11 brew install boost sqlite3 pkg-config mysql jsoncpp
12 brew cleanup
13fi
14
15if has Ubuntu $NODE_LABELS; then
16 BOOST_PKG=libboost-all-dev
17 if has Ubuntu-12.04 $NODE_LABELS; then
18 BOOST_PKG=libboost1.48-all-dev
19 fi
20
21 set -x
22 sudo apt-get update -qq -y
23 sudo apt-get -qq -y install build-essential pkg-config $BOOST_PKG libssl-dev \
24 libcrypto++-dev libsqlite3-dev mysql-client \
25 mysql-server libjsoncpp-dev protobuf-compiler \
26 libprotobuf-dev
27fi