mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 18:57:39 +01:00
25 lines
781 B
Bash
25 lines
781 B
Bash
#!/bin/bash
|
|
set -e
|
|
cd /root
|
|
|
|
# Install dependencies and tools
|
|
apt update
|
|
apt install -y build-essential cmake git libfftw3-dev libglfw3-dev libglew-dev libvolk2-dev libsoapysdr-dev libairspyhf-dev libairspy-dev libiio-dev libad9361-dev librtaudio-dev libhackrf-dev librtlsdr-dev libbladerf-dev p7zip-full wget
|
|
|
|
# Install SDRPlay libraries
|
|
wget https://www.sdrplay.com/software/SDRplay_RSP_API-Linux-3.07.1.run
|
|
7z x ./SDRplay_RSP_API-Linux-3.07.1.run
|
|
7z x ./SDRplay_RSP_API-Linux-3.07.1
|
|
cp x86_64/libsdrplay_api.so.3.07 /usr/lib/libsdrplay_api.so
|
|
cp inc/* /usr/include/
|
|
|
|
git clone https://github.com/AlexandreRouma/SDRPlusPlus
|
|
|
|
cd SDRPlusPlus
|
|
mkdir build
|
|
cd build
|
|
cmake .. -DOPT_BUILD_SDRPLAY_SOURCE=ON -DOPT_BUILD_BLADERF_SOURCE=ON
|
|
make -j2
|
|
|
|
cd ..
|
|
sh make_debian_package.sh ./build |