openwebrx-clone/docker/scripts/install-dependencies-soapysdr.sh
Jakob Ketterl f490fbc2c9 update dependencies
add wsjt-x to build for ft8 capabilities
2019-07-13 21:35:57 +02:00

30 lines
488 B
Bash
Executable File

#!/bin/bash
set -euxo pipefail
function cmakebuild() {
cd $1
mkdir build
cd build
cmake ..
make
make install
cd ../..
rm -rf $1
}
cd /tmp
STATIC_PACKAGES="udev"
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++"
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone https://github.com/pothosware/SoapySDR
cmakebuild SoapySDR
git clone https://github.com/rxseger/rx_tools
cmakebuild rx_tools
apk del .build-deps