Skip to content

Commit

Permalink
add sdrplay v3.07
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatel3001 committed Sep 24, 2024
1 parent cb4e52a commit 4b43cae
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ RUN set -x && \
apt-get install -y --no-install-recommends \
"${KEPT_PACKAGES[@]}" \
"${TEMP_PACKAGES[@]}" && \
# install sdrplay
curl --location --output /tmp/install_sdrplay.sh https://raw.githubusercontent.com/sdr-enthusiasts/install-libsdrplay/7e983ffa8df91f1721f8f286e61e68a17b671037/install_sdrplay.sh && \
sed -i 's/3.15/3.07/g' /tmp/install_sdrplay.sh && \
chmod +x /tmp/install_sdrplay.sh && \
/tmp/install_sdrplay.sh && \
# install sdrplay support for soapy
git clone https://github.com/pothosware/SoapySDRPlay.git /src/SoapySDRPlay && \
pushd /src/SoapySDRPlay && \
git checkout api-3.07 && \
mkdir build && \
pushd build && \
cmake .. && \
make && \
make install && \
popd && \
popd && \
ldconfig && \
# Deploy SoapyRTLTCP
git clone https://github.com/pothosware/SoapyRTLTCP.git /src/SoapyRTLTCP && \
pushd /src/SoapyRTLTCP && \
Expand Down

0 comments on commit 4b43cae

Please sign in to comment.