blob: e5f7585fa719a9fb6867315dd5b5e74a00432773 [file] [log] [blame]
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -07001#!/usr/bin/env bash
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -07002set -e
3
Joao Pereira08f07012015-07-06 18:13:29 -04004JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
Davide Pesaventoe0edc4c2016-09-13 18:29:52 +00007set -x
8
9pushd "${CACHE_DIR:-/tmp}" >/dev/null
Joao Pereira08f07012015-07-06 18:13:29 -040010
11INSTALLED_VERSION=$((cd ndn-cxx && git rev-parse HEAD) 2>/dev/null || echo NONE)
12
13sudo rm -Rf ndn-cxx-latest
14
15git clone --depth 1 git://github.com/named-data/ndn-cxx ndn-cxx-latest
16
17LATEST_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
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -070022else
Joao Pereira08f07012015-07-06 18:13:29 -040023 sudo rm -Rf ndn-cxx-latest
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -070024fi
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
Joao Pereira08f07012015-07-06 18:13:29 -040030pushd ndn-cxx >/dev/null
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -070031
Davide Pesaventoe0edc4c2016-09-13 18:29:52 +000032./waf -j1 --color=yes configure --enable-shared --disable-static --without-osx-keychain
33./waf -j1 --color=yes build
34sudo ./waf -j1 --color=yes install
Joao Pereira08f07012015-07-06 18:13:29 -040035
36popd >/dev/null
37popd >/dev/null
38
39if has Linux $NODE_LABELS; then
40 sudo ldconfig
41elif has FreeBSD $NODE_LABELS; then
42 sudo ldconfig -a
43fi