blob: d22bfb688a8667e17256695f48f89a6e6ab0a443 [file] [log] [blame]
Alexander Afanasyev21034bf2014-09-02 18:31:53 -07001#!/usr/bin/env bash
2set -x
Shock Jiang2d8483c2014-10-30 10:15:37 -07003set -e
Alexander Afanasyev21034bf2014-09-02 18:31:53 -07004
Alexander Afanasyevc7c99002015-10-09 17:27:30 -07005JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
6source "$JDIR"/util.sh
7
8pushd /tmp >/dev/null
9
10INSTALLED_VERSION=$((cd ndn-cxx && git rev-parse HEAD) 2>/dev/null || echo NONE)
11
12sudo rm -Rf ndn-cxx-latest
13
14git clone --depth 1 git://github.com/named-data/ndn-cxx ndn-cxx-latest
15
16LATEST_VERSION=$((cd ndn-cxx-latest && git rev-parse HEAD) 2>/dev/null || echo UNKNOWN)
17
18if [[ $INSTALLED_VERSION != $LATEST_VERSION ]]; then
19 sudo rm -Rf ndn-cxx
20 mv ndn-cxx-latest ndn-cxx
Alexander Afanasyev21034bf2014-09-02 18:31:53 -070021else
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070022 sudo rm -Rf ndn-cxx-latest
Alexander Afanasyev21034bf2014-09-02 18:31:53 -070023fi
24
25sudo rm -Rf /usr/local/include/ndn-cxx
26sudo rm -f /usr/local/lib/libndn-cxx*
27sudo rm -f /usr/local/lib/pkgconfig/libndn-cxx*
28
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070029pushd ndn-cxx >/dev/null
Alexander Afanasyev21034bf2014-09-02 18:31:53 -070030
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070031./waf configure -j1 --color=yes --enable-shared --disable-static --without-osx-keychain
Alexander Afanasyev21034bf2014-09-02 18:31:53 -070032./waf -j1 --color=yes
Alexander Afanasyevc7c99002015-10-09 17:27:30 -070033sudo ./waf install -j1 --color=yes
34
35popd >/dev/null
36popd >/dev/null
37
38if has Linux $NODE_LABELS; then
39 sudo ldconfig
40elif has FreeBSD $NODE_LABELS; then
41 sudo ldconfig -a
42fi