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