jeraldabraham | 5d4d735 | 2014-03-28 02:49:04 -0700 | [diff] [blame] | 1 | #!/usr/bin/python2 |
2 | import os | ||||
3 | |||||
4 | # Install ndn-tlv-ping | ||||
5 | def run(): | ||||
6 | print "\nINSTALLING ndn-tlv-ping" | ||||
7 | print "***********************" | ||||
8 | os.system("git clone https://github.com/named-data/ndn-tlv-ping --depth 1") | ||||
9 | os.chdir("ndn-tlv-ping") | ||||
10 | os.system("./waf distclean") | ||||
11 | os.system("./waf configure") | ||||
12 | os.system("./waf -j1") | ||||
13 | os.system("sudo ./waf install") | ||||
14 | os.chdir("..") |