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

40 lines
854 B
Bash
Raw Normal View History

2019-01-24 16:24:15 +00:00
#!/bin/bash
set -euxo pipefail
2020-02-16 11:19:49 +00:00
export MAKEFLAGS="-j4"
2019-01-24 16:24:15 +00:00
function cmakebuild() {
cd $1
if [[ ! -z "${2:-}" ]]; then
git checkout $2
fi
2019-01-24 16:24:15 +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 libfftw3-3 udev"
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-1.0-0-dev libfftw3-dev pkg-config"
2019-01-24 16:24:15 +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-01-24 16:24:15 +00:00
git clone https://github.com/mossmann/hackrf.git
2019-01-24 16:24:15 +00:00
cd hackrf
2020-03-29 20:48:10 +00:00
git checkout 43e6f99fe8543094d18ff3a6550ed2066c398862
2019-01-24 16:24:15 +00:00
cmakebuild host
cd ..
rm -rf hackrf
2020-05-30 21:41:30 +00:00
git clone https://github.com/pothosware/SoapyHackRF.git
cmakebuild SoapyHackRF 3c514cecd3dd2fdf4794aebc96c482940c11d7ff
2020-05-23 17:59:31 +00:00
SUDO_FORCE_REMOVE=yes apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*