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
|
2019-12-29 23:11:27 +00:00
|
|
|
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
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/airspy/airspyone_host.git
|
|
|
|
cmakebuild airspyone_host bceca18f9e3a5f89cff78c4d949c71771d92dfd3
|
2019-06-20 13:37:21 +00:00
|
|
|
|
2019-12-29 23:11:27 +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
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/airspy/airspyhf.git
|
|
|
|
cmakebuild airspyhf 613852a2bb64af42690bf9be2201826af69a9475
|
2019-12-06 10:39:23 +00:00
|
|
|
|
2019-12-29 23:11:27 +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
|
|
|
|
2020-05-23 17:59:31 +00:00
|
|
|
apt-get -y purge --autoremove $BUILD_PACKAGES
|
|
|
|
apt-get clean
|
|
|
|
rm -rf /var/lib/apt/lists/*
|