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

33 lines
661 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
2021-11-02 15:11:19 +00:00
BUILD_PACKAGES="git cmake make gcc g++ libsamplerate-dev libfftw3-dev"
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
2021-12-20 15:11:51 +00:00
# latest develop as of 2021-12-20 (bias_tee parsing fix)
cmakebuild owrx_connector 10fccf41ce2aaf3f7cd478ce7b55d57c88488642
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/*