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