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

36 lines
687 B
Bash
Raw Normal View History

2019-06-20 13:37:21 +00:00
#!/bin/bash
set -euxo pipefail
function cmakebuild() {
cd $1
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
2019-12-03 13:32:10 +00:00
git clone https://github.com/pothosware/SoapyAirspy.git
cmakebuild SoapyAirspy
2019-12-06 10:39:23 +00:00
git clone https://github.com/airspy/airspyhf.git
cmakebuild airspyhf
git clone https://github.com/pothosware/SoapyAirspyHF.git
cmakebuild SoapyAirspyHF
2019-06-20 13:37:21 +00:00
apk del .build-deps