#!/usr/bin/env bash set -euxo pipefail export MAKEFLAGS="-j4" function cmakebuild() { cd $1 if [[ ! -z "${2:-}" ]]; then git checkout $2 fi 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 cmakebuild owrx_connector 9d72cf1382ed90735632a6d0ef6f820a4758f733 apk del .build-deps