install-apps: script to install NDN applications required for testing
test-ndntlvping: sample test case for testing ndn-tlv-ping
Change-Id: Ib54bd606f6854672ed890d3971ff5827197435e8
refs: #1220
diff --git a/install_helpers/install_dependencies.py b/install_helpers/install_dependencies.py
new file mode 100644
index 0000000..ab27a96
--- /dev/null
+++ b/install_helpers/install_dependencies.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python2
+import os
+
+# Install Dependencies & Necessary Tools
+def run():
+ print "\nINSTALLING DEPENDENCIES"
+ print "***********************"
+ os.system("sudo apt-get -qq update")
+ os.system("sudo apt-get -qq install libboost1.48-all-dev libcrypto++-dev pkg-config libsqlite3-dev")