| #!/bin/bash |
| |
| # O-RAN-SC |
| # |
| # Copyright (C) 2019 AT&T Intellectual Property and Nokia |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # Installs NNG from source and RMR from PackageCloud on CentOS |
| |
| echo "---> install-rpm-nng-rmr.sh" |
| |
| set -eu |
| |
| echo "Install packages" |
| sudo yum install -y \ |
| cmake3 \ |
| ninja-build |
| |
| echo "Clone and build NNG" |
| git clone --branch v1.1.1 https://github.com/nanomsg/nng.git |
| (cd nng \ |
| && mkdir build \ |
| && cd build \ |
| && cmake3 -DBUILD_SHARED_LIBS=1 -G Ninja .. \ |
| && ninja-build \ |
| && sudo ninja-build install) |
| |
| ver="1.4.0-1" |
| echo "Download RMR library ${ver}" |
| wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/el/5/rmr-${ver}.x86_64.rpm/download.rpm |
| echo "Install RMR library ${ver}" |
| sudo rpm -vi rmr-${ver}.x86_64.rpm |