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