blob: 9147a2b363d1d365a19907defb62dd284ce99180 [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 distclean")
os.system("./waf configure")
os.system("./waf -j1")
os.system("sudo ./waf install")
os.chdir("..")