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