Wentao Shang | a8f3c40 | 2014-10-30 14:03:27 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | set -x |
| 3 | set -e |
| 4 | |
| 5 | cd /tmp |
| 6 | BUILD="no" |
| 7 | if [ ! -d NFD ]; then |
| 8 | git clone --recursive --depth 1 git://github.com/named-data/NFD |
| 9 | cd NFD |
| 10 | BUILD="yes" |
| 11 | else |
| 12 | cd NFD |
| 13 | INSTALLED_VERSION=`git rev-parse HEAD || echo NONE` |
| 14 | sudo rm -Rf latest-version |
| 15 | git clone --recursive --depth 1 git://github.com/named-data/NFD 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 NFD |
| 23 | git clone --recursive --depth 1 git://github.com/named-data/NFD |
| 24 | cd NFD |
| 25 | BUILD="yes" |
| 26 | fi |
| 27 | fi |
| 28 | |
| 29 | if [ "$BUILD" = "yes" ]; then |
| 30 | sudo ./waf -j1 --color=yes distclean |
| 31 | fi |
| 32 | |
| 33 | git submodule update --init |
| 34 | |
| 35 | ./waf configure -j1 --color=yes |
| 36 | ./waf -j1 --color=yes |
| 37 | sudo ./waf install -j1 --color=yes |