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