blob: 9147a2b363d1d365a19907defb62dd284ce99180 [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 "***********************"
Junxiao Shi33a6ee12016-12-26 18:59:38 +00008 os.system("git clone --depth 1 https://github.com/named-data/ndn-tools")
Eric Newberry86b00b92015-06-07 15:23:51 -07009 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("..")