blob: fdfafce9c208e596ea8c4c0b6de128192b316bfe [file] [log] [blame]
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +00001#!/usr/bin/env bash
2set -x
3set -e
4
5cd /tmp
6BUILD="no"
7if [ ! -d ndn-cxx ]; then
8 git clone git://github.com/named-data/ndn-cxx
9 cd ndn-cxx
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000010 BUILD="yes"
11else
12 cd ndn-cxx
13 INSTALLED_VERSION=`git rev-parse HEAD || echo NONE`
14 sudo rm -Rf latest-version
15 git clone git://github.com/named-data/ndn-cxx latest-version
16 cd latest-version
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000017 LATEST_VERSION=`git rev-parse HEAD || echo UNKNOWN`
18 cd ..
19 rm -Rf latest-version
20 if [ "$INSTALLED_VERSION" != "$LATEST_VERSION" ]; then
21 cd ..
22 sudo rm -Rf ndn-cxx
23 git clone --depth 1 git://github.com/named-data/ndn-cxx
24 cd ndn-cxx
25 BUILD="yes"
26 fi
27fi
28
29sudo rm -Rf /usr/local/include/ndn-cxx
30sudo rm -f /usr/local/lib/libndn-cxx*
31sudo rm -f /usr/local/lib/pkgconfig/libndn-cxx*
32
33if [ "$BUILD" = "yes" ]; then
34 sudo ./waf distclean -j1 --color=yes
35fi
36
Alexander Afanasyevdf26b5a2015-01-15 23:30:56 -080037IS_UBUNTU_12_04=$( python -c "print 'yes' if 'Ubuntu-12.04' in '$NODE_LABELS'.strip().split(' ') else 'no'" )
38if [[ $IS_UBUNTU_12_04 == "yes" ]]; then
39 EXTRA_FLAGS=" --boost-libs=/usr/lib/x86_64-linux-gnu"
40fi
41
42./waf configure -j1 --color=yes --without-osx-keychain $EXTRA_FLAGS
Alexander Afanasyev8e60bcd2015-01-15 20:55:40 +000043./waf -j1 --color=yes
44sudo ./waf install -j1 --color=yes