blob: cf4955664809a504b3d77ddaf452bf134f0a62d2 [file] [log] [blame]
Eric Newberry86b00b92015-06-07 15:23:51 -07001#!/usr/bin/python2
2import os
3
4# Install ndn-tools
5def run():
6 print "\nINSTALLING ndn-tools"
7 print "***********************"
8 os.system("git clone https://github.com/named-data/ndn-tools --depth 1")
9 os.chdir("ndn-tools")
10 os.system("./waf distclean")
11 os.system("./waf configure")
12 os.system("./waf -j1")
13 os.system("sudo ./waf install")
14 os.chdir("..")