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

30 lines
498 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
BUILD_PACKAGES="git cmake make gcc g++ musl-dev"
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone https://github.com/jketterl/owrx_connector.git
2020-02-18 19:58:01 +00:00
cmakebuild owrx_connector 22a34fe649a0121a79262f54e99e9aa864b1536f
2019-11-18 13:15:59 +00:00
apk del .build-deps