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

42 lines
996 B
Bash
Raw Normal View History

2019-06-20 15:37:21 +02:00
#!/bin/bash
set -euxo pipefail
2020-02-16 12:19:49 +01:00
export MAKEFLAGS="-j4"
2019-06-20 15:37:21 +02:00
function cmakebuild() {
cd $1
if [[ ! -z "${2:-}" ]]; then
git checkout $2
fi
2019-06-20 15:37:21 +02:00
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
cd /tmp
2020-05-23 19:59:31 +02:00
STATIC_PACKAGES="libusb-1.0-0"
BUILD_PACKAGES="git libusb-1.0-0-dev cmake make gcc g++ pkg-config"
2019-06-20 15:37:21 +02:00
2020-05-23 19:59:31 +02:00
apt-get update
2020-05-23 22:53:12 +02:00
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
2019-06-20 15:37:21 +02:00
git clone https://github.com/airspy/airspyone_host.git
cmakebuild airspyone_host bceca18f9e3a5f89cff78c4d949c71771d92dfd3
2019-06-20 15:37:21 +02:00
git clone https://github.com/pothosware/SoapyAirspy.git
2020-03-29 22:48:10 +02:00
cmakebuild SoapyAirspy 10d697b209e7f1acc8b2c8d24851d46170ef77e3
2019-12-03 14:32:10 +01:00
git clone https://github.com/airspy/airspyhf.git
cmakebuild airspyhf 613852a2bb64af42690bf9be2201826af69a9475
2019-12-06 11:39:23 +01:00
git clone https://github.com/pothosware/SoapyAirspyHF.git
2020-03-29 22:48:10 +02:00
cmakebuild SoapyAirspyHF 81ca737bb044dd930a9de738bced1e4915491f1b
2019-12-06 11:39:23 +01:00
2020-05-23 19:59:31 +02:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*