blob: c27f254c407d375316fac8383f67438e267d6f24 [file] [log] [blame]
#!/usr/bin/python2
import os
# Install ndn-tlv-ping
def run():
print "\nINSTALLING ndn-tlv-ping"
print "***********************"
os.system("git clone https://github.com/named-data/ndn-tlv-ping --depth 1")
os.chdir("ndn-tlv-ping")
os.system("./waf distclean")
os.system("./waf configure")
os.system("./waf -j1")
os.system("sudo ./waf install")
os.chdir("..")