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