Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | set -x |
| 3 | set -e |
| 4 | |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 5 | JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) |
| 6 | source "$JDIR"/util.sh |
| 7 | |
Alexander Afanasyev | f22ebaf | 2015-12-17 21:23:05 -0800 | [diff] [blame] | 8 | pushd ${CACHE_DIR:-/tmp} >/dev/null |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 9 | |
| 10 | INSTALLED_VERSION=$((cd ndn-cxx && git rev-parse HEAD) 2>/dev/null || echo NONE) |
| 11 | |
| 12 | sudo rm -Rf ndn-cxx-latest |
| 13 | |
| 14 | git clone --depth 1 git://github.com/named-data/ndn-cxx ndn-cxx-latest |
| 15 | |
| 16 | LATEST_VERSION=$((cd ndn-cxx-latest && git rev-parse HEAD) 2>/dev/null || echo UNKNOWN) |
| 17 | |
| 18 | if [[ $INSTALLED_VERSION != $LATEST_VERSION ]]; then |
| 19 | sudo rm -Rf ndn-cxx |
| 20 | mv ndn-cxx-latest ndn-cxx |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 21 | else |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 22 | sudo rm -Rf ndn-cxx-latest |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 23 | fi |
| 24 | |
| 25 | sudo rm -Rf /usr/local/include/ndn-cxx |
| 26 | sudo rm -f /usr/local/lib/libndn-cxx* |
| 27 | sudo rm -f /usr/local/lib/pkgconfig/libndn-cxx* |
| 28 | |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 29 | pushd ndn-cxx >/dev/null |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 30 | |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 31 | ./waf configure -j1 --color=yes --enable-shared --disable-static --without-osx-keychain |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 32 | ./waf -j1 --color=yes |
| 33 | sudo ./waf install -j1 --color=yes |
Joao Pereira | 08f0701 | 2015-07-06 18:13:29 -0400 | [diff] [blame] | 34 | |
| 35 | popd >/dev/null |
| 36 | popd >/dev/null |
| 37 | |
| 38 | if has Linux $NODE_LABELS; then |
| 39 | sudo ldconfig |
| 40 | elif has FreeBSD $NODE_LABELS; then |
| 41 | sudo ldconfig -a |
| 42 | fi |