Skip to content

Commit

Permalink
Merge pull request #13 from rpatel3001/miri
Browse files Browse the repository at this point in the history
add libmirisdr-5 and SoapyMiri
  • Loading branch information
fredclausen committed Jan 30, 2024
2 parents 23947a7 + 5ad97f6 commit db3e502
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 db3e502

Please sign in to comment.