openwebrx-clone/docker/scripts/install-dependencies-runds.sh

33 lines
579 B
Bash
Raw Normal View History

2020-12-01 20:39:22 +00:00
#!/bin/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
STATIC_PACKAGES=""
BUILD_PACKAGES="git cmake make gcc g++ pkg-config"
apt-get update
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
2021-02-03 02:21:09 +00:00
git clone https://github.com/jketterl/runds_connector.git
2021-05-06 17:30:07 +00:00
cmakebuild runds_connector 0.1.0
2020-12-01 20:39:22 +00:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*