39 lines
907 B
Bash
Executable File
39 lines
907 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
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="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
|
|
|
|
git clone https://github.com/pothosware/SoapyAirspy.git
|
|
cmakebuild SoapyAirspy 99756be5c3413a2d447baf70cb5a880662452655
|
|
|
|
git clone https://github.com/airspy/airspyhf.git
|
|
cmakebuild airspyhf 613852a2bb64af42690bf9be2201826af69a9475
|
|
|
|
git clone https://github.com/pothosware/SoapyAirspyHF.git
|
|
cmakebuild SoapyAirspyHF 54f5487dd96207540b2dd562ff9e718e0588770b
|
|
|
|
apk del .build-deps
|