openwebrx-clone/docker/scripts/install-dependencies-soapyr...

33 lines
653 B
Bash
Raw Normal View History

2020-02-09 14:23:17 +00:00
#!/usr/bin/env bash
set -euo pipefail
2020-02-16 11:19:49 +00:00
export MAKEFLAGS="-j4"
2020-02-09 14:23:17 +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
}
cd /tmp
2020-05-23 17:59:31 +00:00
STATIC_PACKAGES="avahi-daemon libavahi-client3"
BUILD_PACKAGES="git cmake make gcc g++ libavahi-client-dev"
2020-02-09 14:23:17 +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
2020-02-09 14:23:17 +00:00
git clone https://github.com/pothosware/SoapyRemote.git
cmakebuild SoapyRemote 6d9bd820da470cfe7b27b2e6946af93cfece448f
2020-05-23 17:59:31 +00:00
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*