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

40 lines
930 B
Bash
Raw Normal View History

2019-06-20 13:37:21 +00:00
#!/bin/bash
set -euxo pipefail
2020-02-16 11:19:49 +00:00
export MAKEFLAGS="-j4"
2019-06-20 13:37:21 +00:00
function cmakebuild() {
cd $1
if [[ ! -z "${2:-}" ]]; then
git checkout $2
fi
2019-06-20 13:37:21 +00:00
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
cd /tmp
STATIC_PACKAGES="libusb"
BUILD_PACKAGES="git libusb-dev cmake make gcc musl-dev g++ linux-headers"
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone https://github.com/airspy/airspyone_host.git
cmakebuild airspyone_host bceca18f9e3a5f89cff78c4d949c71771d92dfd3
2019-06-20 13:37:21 +00:00
git clone https://github.com/pothosware/SoapyAirspy.git
2020-03-29 20:48:10 +00:00
cmakebuild SoapyAirspy 10d697b209e7f1acc8b2c8d24851d46170ef77e3
2019-12-03 13:32:10 +00:00
git clone https://github.com/airspy/airspyhf.git
cmakebuild airspyhf 613852a2bb64af42690bf9be2201826af69a9475
2019-12-06 10:39:23 +00:00
git clone https://github.com/pothosware/SoapyAirspyHF.git
2020-03-29 20:48:10 +00:00
cmakebuild SoapyAirspyHF 81ca737bb044dd930a9de738bced1e4915491f1b
2019-12-06 10:39:23 +00:00
2019-06-20 13:37:21 +00:00
apk del .build-deps