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