From 7336b19beebacd72872b36bdc99eab2cee4aa3a2 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Sun, 25 Aug 2024 22:58:05 +0200 Subject: [PATCH] add beginning of fedora nightly builds --- docker_builds/fedora_40/Dockerfile | 4 ++++ docker_builds/fedora_40/do_build.sh | 31 +++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 docker_builds/fedora_40/Dockerfile create mode 100644 docker_builds/fedora_40/do_build.sh diff --git a/docker_builds/fedora_40/Dockerfile b/docker_builds/fedora_40/Dockerfile new file mode 100644 index 00000000..42876a60 --- /dev/null +++ b/docker_builds/fedora_40/Dockerfile @@ -0,0 +1,4 @@ +FROM fedora:40 +ENV DEBIAN_FRONTEND=noninteractive +COPY do_build.sh /root +RUN chmod +x /root/do_build.sh \ No newline at end of file diff --git a/docker_builds/fedora_40/do_build.sh b/docker_builds/fedora_40/do_build.sh new file mode 100644 index 00000000..39944a6b --- /dev/null +++ b/docker_builds/fedora_40/do_build.sh @@ -0,0 +1,31 @@ +#!/bin/bash +set -e +cd /root + +# Install dependencies and tools +dnf update -y +dnf install -y make gcc g++ cmake git wget p7zip fftw-devel glfw-devel volk-devel libzstd-devel codec2-devel airspyone_host-devel rtaudio-devel \ + hackrf-devel rtl-sdr-devel portaudio-devel spdlog-devel libusbg-devel + +# Install SDRPlay libraries +wget https://www.sdrplay.com/software/SDRplay_RSP_API-Linux-3.15.1.run +7za x ./SDRplay_RSP_API-Linux-3.15.1.run +7za x ./SDRplay_RSP_API-Linux-3.15.1 +cp x86_64/libsdrplay_api.so.3.15 /usr/lib/libsdrplay_api.so +cp inc/* /usr/include/ + +# Install librfnm +git clone https://github.com/AlexandreRouma/librfnm +cd librfnm +mkdir build +cd build +cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr +make -j2 +make install +cd ../../ + +cd SDRPlusPlus +mkdir build +cd build +cmake .. -DOPT_BUILD_AIRSPYHF_SOURCE=OFF -DOPT_BUILD_PLUTOSDR_SOURCE=OFF -DOPT_BUILD_RFNM_SOURCE=ON -DOPT_BUILD_SDRPLAY_SOURCE=ON -DOPT_BUILD_NEW_PORTAUDIO_SINK=ON -DOPT_BUILD_M17_DECODER=ON +make VERBOSE=1 -j2 \ No newline at end of file