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

45 lines
1.1 KiB
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
2020-05-23 17:59:31 +00:00
STATIC_PACKAGES="libusb-1.0-0"
BUILD_PACKAGES="git libusb-1.0-0-dev cmake make gcc g++ pkg-config"
2019-06-20 13:37:21 +00:00
2020-05-23 17:59:31 +00:00
apt-get update
2020-05-23 20:53:12 +00:00
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
2019-06-20 13:37:21 +00:00
git clone https://github.com/airspy/airspyone_host.git
2020-10-04 19:02:46 +00:00
# latest from master as of 2020-09-04
cmakebuild airspyone_host 652fd7f1a8f85687641e0bd91f739694d7258ecc
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
2020-10-04 19:02:46 +00:00
# latest from master as of 2020-09-04
cmakebuild airspyhf 8891387edddcd185e2949e9814e9ef35f46f0722
2019-12-06 10:39:23 +00:00
git clone https://github.com/pothosware/SoapyAirspyHF.git
2020-10-04 19:02:46 +00:00
# latest from master as of 2020-09-04
cmakebuild SoapyAirspyHF 5488dac5b44f1432ce67b40b915f7e61d3bd4853
2019-12-06 10:39:23 +00:00
2020-05-23 17:59:31 +00:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*