2019-01-24 16:46:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
2020-02-16 12:19:49 +01:00
|
|
|
export MAKEFLAGS="-j4"
|
2019-01-24 16:46:16 +01:00
|
|
|
|
|
|
|
function cmakebuild() {
|
|
|
|
cd $1
|
2019-12-30 00:11:27 +01:00
|
|
|
if [[ ! -z "${2:-}" ]]; then
|
|
|
|
git checkout $2
|
|
|
|
fi
|
2019-01-24 16:46:16 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
cd ../..
|
|
|
|
rm -rf $1
|
|
|
|
}
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
|
2019-07-13 21:35:57 +02:00
|
|
|
STATIC_PACKAGES="udev"
|
|
|
|
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++"
|
2019-01-24 16:46:16 +01:00
|
|
|
|
2019-07-13 21:35:57 +02:00
|
|
|
apk add --no-cache $STATIC_PACKAGES
|
2019-01-24 16:46:16 +01:00
|
|
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
|
|
|
|
2019-12-30 00:11:27 +01:00
|
|
|
git clone https://github.com/pothosware/SoapySDR
|
2020-01-25 23:52:20 +01:00
|
|
|
cmakebuild SoapySDR f722f9ce5b629c3c44401a9bf628b3f8e67a9695
|
2019-01-24 16:46:16 +01:00
|
|
|
|
|
|
|
apk del .build-deps
|