Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | set -x |
| 3 | set -e |
| 4 | |
| 5 | cd /tmp |
| 6 | BUILD="no" |
| 7 | if [ ! -d ndn-cxx ]; then |
| 8 | git clone --depth 1 git://github.com/named-data/ndn-cxx |
| 9 | cd ndn-cxx |
| 10 | BUILD="yes" |
| 11 | else |
| 12 | cd ndn-cxx |
| 13 | INSTALLED_VERSION=`git rev-parse HEAD || echo NONE` |
| 14 | sudo rm -Rf latest-version |
| 15 | git clone --depth 1 git://github.com/named-data/ndn-cxx latest-version |
| 16 | cd latest-version |
| 17 | LATEST_VERSION=`git rev-parse HEAD || echo UNKNOWN` |
| 18 | cd .. |
| 19 | rm -Rf latest-version |
| 20 | if [ "$INSTALLED_VERSION" != "$LATEST_VERSION" ]; then |
| 21 | cd .. |
| 22 | sudo rm -Rf ndn-cxx |
| 23 | git clone --depth 1 git://github.com/named-data/ndn-cxx |
| 24 | cd ndn-cxx |
| 25 | BUILD="yes" |
| 26 | fi |
| 27 | fi |
| 28 | |
| 29 | sudo rm -Rf /usr/local/include/ndn-cxx |
| 30 | sudo rm -f /usr/local/lib/libndn-cxx* |
| 31 | sudo rm -f /usr/local/lib/pkgconfig/libndn-cxx* |
| 32 | |
| 33 | if [ "$BUILD" = "yes" ]; then |
| 34 | sudo ./waf distclean -j1 --color=yes |
| 35 | fi |
| 36 | |
| 37 | ./waf configure -j1 --color=yes --without-osx-keychain |
| 38 | ./waf -j1 --color=yes |
| 39 | sudo ./waf install -j1 --color=yes |