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

31 lines
560 B
Bash
Raw Normal View History

2019-01-21 17:44:35 +00:00
#!/bin/bash
set -euxo pipefail
2020-02-16 11:19:49 +00:00
export MAKEFLAGS="-j4"
2019-01-21 17:44:35 +00:00
function cmakebuild() {
cd $1
if [[ ! -z "${2:-}" ]]; then
git checkout $2
fi
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
2019-01-21 17:44:35 +00:00
cd /tmp
STATIC_PACKAGES="libusb"
BUILD_PACKAGES="git libusb-dev cmake make gcc musl-dev g++ linux-headers"
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone https://github.com/osmocom/rtl-sdr.git
cmakebuild rtl-sdr b5af355b1d833b3c898a61cf1e072b59b0ea3440
apk del .build-deps