blob: 951e3f955f4fb3972546f49e4bd743a9b34d33f6 [file] [log] [blame]
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -07001#!/usr/bin/env bash
2set -x
3set -e
4
5cd /tmp
6BUILD="no"
7if [ ! -d ndn-cxx ]; then
8 git clone --depth 1 git://github.com/named-data/ndn-cxx
9 cd ndn-cxx
10 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 --depth 1 git://github.com/named-data/ndn-cxx latest-version
16 cd latest-version
17 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
37./waf configure -j1 --color=yes --without-osx-keychain
38./waf -j1 --color=yes
39sudo ./waf install -j1 --color=yes