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

35 lines
612 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
STATIC_PACKAGES="libusb fftw udev"
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-dev fftw-dev"
2019-01-24 16:24:15 +00:00
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
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
apk del .build-deps