blob: 3203dceac28bee436225399c80097efe7b164338 [file] [log] [blame]
jeraldabraham5d4d7352014-03-28 02:49:04 -07001#!/usr/bin/python2
2import os
3
4# Install ndn-traffic-generator
5def run():
6 print "\nINSTALLING ndn-traffic-generator"
7 print "********************************"
8 os.system("git clone https://github.com/named-data/ndn-traffic-generator --depth 1")
9 os.chdir("ndn-traffic-generator")
10 os.system("./waf distclean")
11 os.system("./waf configure")
12 os.system("./waf -j1")
13 os.system("sudo ./waf install")
14 os.chdir("..")