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

33 lines
631 B
Bash
Raw Normal View History

2020-02-09 15:23:17 +01:00
#!/usr/bin/env bash
set -euo pipefail
2020-02-16 12:19:49 +01:00
export MAKEFLAGS="-j4"
2020-02-09 15:23:17 +01: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
}
cd /tmp
2020-05-23 19:59:31 +02:00
STATIC_PACKAGES="avahi-daemon libavahi-client3"
BUILD_PACKAGES="git cmake make gcc g++ libavahi-client-dev"
2020-02-09 15:23:17 +01:00
2020-05-23 19:59:31 +02:00
apt-get update
2020-05-23 22:53:12 +02:00
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
2020-02-09 15:23:17 +01:00
git clone https://github.com/pothosware/SoapyRemote.git
2020-10-04 21:02:46 +02:00
cmakebuild SoapyRemote soapy-remote-0.5.2
2020-02-09 15:23:17 +01:00
2020-05-23 19:59:31 +02:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*