#!/usr/bin/python2 | |
import os | |
# Install repo-ng | |
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 configure") | |
os.system("./waf") | |
os.system("sudo ./waf install") | |
os.chdir("..") |