mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
34 lines
650 B
Bash
34 lines
650 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo 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++"
|
||
|
|
|
||
|
|
apt-get update
|
||
|
|
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
|
||
|
|
|
||
|
|
git clone https://github.com/alexander-sholohov/SoapyAfedri.git
|
||
|
|
# latest from master as of 2023-10-22
|
||
|
|
cmakebuild SoapyAfedri cf90c195f8ad25a3c55947a441fb8ec1418d5486
|
||
|
|
|
||
|
|
apt-get -y purge --autoremove $BUILD_PACKAGES
|
||
|
|
apt-get clean
|
||
|
|
rm -rf /var/lib/apt/lists/*
|