Skip to content

Commit

Permalink
add libmirisdr-5 and SoapyMiri
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatel3001 committed Jan 28, 2024
1 parent bb10e32 commit 5ad97f6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ RUN set -x && \
make install && \
ldconfig && \
popd && \

git clone https://github.com/ericek111/libmirisdr-5.git /src/libmirisdr-5 && \
pushd /src/libmirisdr-5 && \
mkdir build && \
pushd build && \
cmake .. && \
make && \
make install && \
popd && popd && \

# install sdrplay
curl --location --output /tmp/install_sdrplay.sh https://raw.githubusercontent.com/sdr-enthusiasts/install-libsdrplay/main/install_sdrplay.sh && \
chmod +x /tmp/install_sdrplay.sh && \
Expand Down Expand Up @@ -94,6 +104,16 @@ RUN set -x && \
make install && \
popd && popd && \
ldconfig && \

git clone https://github.com/ericek111/SoapyMiri.git /src/SoapyMiri && \
pushd /src/SoapyMiri && \
mkdir build && \
pushd build && \
cmake .. && \
make -j4 && \
make install && \
popd && popd && \

# Deploy AirspyHF+
git clone https://github.com/pothosware/SoapyAirspyHF.git /src/SoapyAirspyHF && \
pushd /src/SoapyAirspyHF && \
Expand Down

0 comments on commit 5ad97f6

Please sign in to comment.