openwebrx-clone/docker/scripts/install-connectors.sh

33 lines
660 B
Bash
Raw Normal View History

2019-11-18 13:15:59 +00:00
#!/usr/bin/env bash
set -euxo pipefail
2020-02-16 11:19:49 +00:00
export MAKEFLAGS="-j4"
2019-11-18 13:15:59 +00:00
function cmakebuild() {
cd $1
if [[ ! -z "${2:-}" ]]; then
git checkout $2
fi
2019-11-18 13:15:59 +00:00
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
cd /tmp
2020-05-23 17:59:31 +00:00
BUILD_PACKAGES="git cmake make gcc g++"
2019-11-18 13:15:59 +00:00
2020-05-23 17:59:31 +00:00
apt-get update
2020-05-23 20:53:12 +00:00
apt-get -y install --no-install-recommends $BUILD_PACKAGES
2019-11-18 13:15:59 +00:00
git clone https://github.com/jketterl/owrx_connector.git
2020-08-20 09:50:27 +00:00
# this is the latest development version as of 2020-08-20 (includes rtl_tcp_connector)
cmakebuild owrx_connector a5a4d78ff7f029d2b86e9ddbc30187ced1c3ecf7
2019-11-18 13:15:59 +00:00
2020-05-23 17:59:31 +00:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*