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

26 lines
388 B
Bash
Raw Normal View History

2019-11-18 13:15:59 +00:00
#!/usr/bin/env bash
set -euxo pipefail
function cmakebuild() {
cd $1
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
cd /tmp
BUILD_PACKAGES="git cmake make gcc g++ musl-dev"
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone --depth 1 https://github.com/jketterl/owrx_connector.git
2019-11-18 13:15:59 +00:00
cmakebuild owrx_connector
apk del .build-deps