blob: e5f7585fa719a9fb6867315dd5b5e74a00432773 [file] [log] [blame]
Yingdi Yuda495a92015-05-05 13:57:59 -07001#!/usr/bin/env bash
Yingdi Yuda495a92015-05-05 13:57:59 -07002set -e
3
Yingdi Yu2f5379b2016-03-10 12:17:58 -08004JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
Alexander Afanasyev867228e2016-10-17 16:54:55 -07007set -x
8
9pushd "${CACHE_DIR:-/tmp}" >/dev/null
Yingdi Yuda495a92015-05-05 13:57:59 -070010
11INSTALLED_VERSION=$((cd ndn-cxx && git rev-parse HEAD) 2>/dev/null || echo NONE)
12
13sudo rm -Rf ndn-cxx-latest
Yingdi Yu2f5379b2016-03-10 12:17:58 -080014
Yingdi Yuda495a92015-05-05 13:57:59 -070015git clone --depth 1 git://github.com/named-data/ndn-cxx ndn-cxx-latest
Yingdi Yu2f5379b2016-03-10 12:17:58 -080016
Yingdi Yuda495a92015-05-05 13:57:59 -070017LATEST_VERSION=$((cd ndn-cxx-latest && git rev-parse HEAD) 2>/dev/null || echo UNKNOWN)
18
19if [[ $INSTALLED_VERSION != $LATEST_VERSION ]]; then
20 sudo rm -Rf ndn-cxx
21 mv ndn-cxx-latest ndn-cxx
22else
23 sudo rm -Rf ndn-cxx-latest
24fi
25
26sudo rm -Rf /usr/local/include/ndn-cxx
27sudo rm -f /usr/local/lib/libndn-cxx*
28sudo rm -f /usr/local/lib/pkgconfig/libndn-cxx*
29
30pushd ndn-cxx >/dev/null
31
Alexander Afanasyev867228e2016-10-17 16:54:55 -070032./waf -j1 --color=yes configure --enable-shared --disable-static --without-osx-keychain
33./waf -j1 --color=yes build
34sudo ./waf -j1 --color=yes install
Yingdi Yuda495a92015-05-05 13:57:59 -070035
36popd >/dev/null
37popd >/dev/null
Yingdi Yu2f5379b2016-03-10 12:17:58 -080038
39if has Linux $NODE_LABELS; then
40 sudo ldconfig
41elif has FreeBSD $NODE_LABELS; then
42 sudo ldconfig -a
43fi