Yanbiao Li | a8a7d27 | 2015-07-20 17:28:45 -0700 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | import os |
| 3 | |
| 4 | # Install infoedit |
| 5 | def run(): |
| 6 | print "\nINSTALLING infoedit" |
Junxiao Shi | 33a6ee1 | 2016-12-26 18:59:38 +0000 | [diff] [blame^] | 7 | print "**************" |
| 8 | os.system("git clone --depth 1 https://github.com/NDN-Routing/infoedit.git") |
Yanbiao Li | a8a7d27 | 2015-07-20 17:28:45 -0700 | [diff] [blame] | 9 | os.chdir("infoedit") |
Junxiao Shi | 33a6ee1 | 2016-12-26 18:59:38 +0000 | [diff] [blame^] | 10 | os.system("make") |
| 11 | os.system("sudo make install") |
| 12 | os.chdir("..") |