Fix SoapySDR and LimeSuite installation to a tag

This commit is contained in:
herlesupreeth
2022-10-25 08:32:30 +02:00
parent 305fc44238
commit cd5bf678b6

View File

@@ -33,11 +33,13 @@ RUN apt-get update && \
apt-get -y install cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev git \
libzmq3-dev libboost-system-dev libboost-test-dev libboost-thread-dev libqwt-qt5-dev qtbase5-dev \
software-properties-common g++ make pkg-config libpython2-dev python-numpy swig libi2c-dev \
libboost-program-options-dev libconfig++-dev net-tools iputils-ping libusb-1.0-0-dev
libboost-program-options-dev libconfig++-dev net-tools iputils-ping libusb-1.0-0-dev libpython3-dev python3-numpy swig \
python3-distutils
# Get SoapySDR, compile and install
RUN git clone https://github.com/pothosware/SoapySDR.git && \
cd SoapySDR && \
git checkout 637023d5e1b60e117a6533daddc4d991a33375f9 && \
mkdir build && cd build && \
cmake ../ && make && make install && \
ldconfig
@@ -45,6 +47,7 @@ RUN git clone https://github.com/pothosware/SoapySDR.git && \
# Get Limesuite, compile and install
RUN git clone https://github.com/myriadrf/LimeSuite.git && \
cd LimeSuite && \
git checkout tags/v22.09.1 -b v22.09.1 && \
mkdir builddir && cd builddir && \
cmake ../ && make && make install && \
ldconfig