infoedit
Change-Id: I4d08ee17075f0b0e205817be7dcdb417073df43a
refs: #2964
diff --git a/install_apps.py b/install_apps.py
index 523a1a7..ccf938d 100755
--- a/install_apps.py
+++ b/install_apps.py
@@ -16,6 +16,8 @@
print " install_NFD - install NFD (named-data/NFD)"
print " install_ndntraffic - install ndn-traffic-generator (named-data/ndn-traffic-generator)"
print " install_ndntools - install ndn-tools (named-data/ndn-tools)"
+ print " install_repo - install repo-ng (named-data/repo-ng)"
+ print " install_infoedit - install infoedit"
print " install_all - do all of the above"
print " help - print this message and exit\n"
@@ -31,6 +33,8 @@
"install_NFD",
"install_ndntraffic",
"install_ndntools",
+ "install_repo",
+ "install_infoedit",
"install_all",
"help" ]
@@ -49,6 +53,8 @@
actionList.add("install_NFD")
actionList.add("install_ndntraffic")
actionList.add("install_ndntools")
+ actionList.add("install_repo")
+ actionList.add("install_infoedit")
module = __import__("setup_preparation_folder")
module.run()
module = __import__("install_dependencies")
@@ -68,6 +74,12 @@
if "install_ndntools" in actionList:
module = __import__("install_ndntools")
module.run()
+ if "install_repo" in actionList:
+ module = __import__("install_repo")
+ module.run()
+ if "install_infoedit" in actionList:
+ module = __import__("install_infoedit")
+ module.run()
print ""
else:
usage()