blob: 94850be84d47c797b422efcd5dee6d02ae194b4a [file] [log] [blame]
#!/usr/bin/python2
import os
# Install ndn-cxx
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.system("sudo ldconfig")
os.chdir("..")