Update dep script; no version/code changes
(a1 does not even currently use this script, yet. this is mostly
documentation right now)
Change-Id: Ibe4daef77398bd0ebd3dbf3a44849026df931f05
Signed-off-by: Tommy Carpenter <tc677g@att.com>
diff --git a/integration_tests/install_deps.sh b/integration_tests/install_deps.sh
deleted file mode 100755
index 4a17c5d..0000000
--- a/integration_tests/install_deps.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-git clone --branch 1.10.2 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
- && cd rmr \
- && mkdir .build; cd .build; cmake .. -DPACK_EXTERNALS=1; sudo make install \
- && cd ../.. \
- && rm -rf rmr
diff --git a/integration_tests/install_rmr.sh b/integration_tests/install_rmr.sh
new file mode 100755
index 0000000..70ee489
--- /dev/null
+++ b/integration_tests/install_rmr.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+git clone --branch 1.13.1 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
+ && cd rmr \
+ && mkdir .build; cd .build \
+ && echo "<<<installing rmr devel headers>>>" \
+ && cmake .. -DDEV_PKG=1; make install \
+ && echo "<<< installing rmr .so>>>" \
+ && cmake .. -DPACK_EXTERNALS=1; sudo make install \
+ && echo "cleanup" \
+ && cd ../.. \
+ && rm -rf rmr