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