mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 11:17:35 +01:00
17 lines
398 B
Bash
17 lines
398 B
Bash
#!/bin/bash
|
|
set -e
|
|
cd /root
|
|
|
|
apt update
|
|
apt install -y build-essential cmake git libfftw3-dev libglfw3-dev libglew-dev libvolk1-dev libsoapysdr-dev libairspyhf-dev libairspy-dev libiio-dev libad9361-dev librtaudio-dev libhackrf-dev librtlsdr-dev
|
|
|
|
git clone https://github.com/AlexandreRouma/SDRPlusPlus
|
|
|
|
cd SDRPlusPlus
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make -j2
|
|
|
|
cd ..
|
|
sh make_debian_package.sh ./build |