This document will guide you through installing SDR applications on the platform built in the document: Installing drivers and support for the SDRplay RSP1A on a Raspberry Pi and depends on that installation.
cd ~/ tar -zxvf hamlib-4.1.tar.gz cd hamlib-4.1 ./configure make -j 4 sudo make install sudo ldconfig
sudo apt-get install gcc g++ gfortran libgfortran5 libpulse-dev pulseaudio subversion libreadline-dev libudev-dev #Only if you did not install Hamlib: #sudo apt-get install libhamlib-dev
cd ~/ tar -zxvf wsjtx-2.3.1.tgz cd wsjtx-2.3.1 mkdir build cd build/ cmake -DWSJT_SKIP_MANPAGES=ON -DWSJT_GENERATE_DOCS=OFF .. cmake --build . sudo cmake --build . --target install sudo ldconfig
sudo apt-get install avahi-daemon libavahi-client-dev
cd ~/ git clone https://github.com/pothosware/SoapyRemote.git cd SoapyRemote mkdir build cd build cmake .. make -j 4 sudo make install sudo ldconfig
SoapySDRServer --bind
SoapySDRServer --bind="0.0.0.0:1234" # IPv6 address URLs are also supported: SoapySDRServer --bind="[::]:1234"
cd ~/ git clone https://github.com/SDRplay/RSPTCPServer.git cd RSPTCPServer mkdir build cd build cmake .. make sudo make install sudo ldconfig