You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- - name: Git checkout
- git:
- repo: https://github.com/pothosware/SoapyRTLSDR.git
- dest: "{{ install_dir }}/SoapyRTLSDR"
- version: master
- recursive: yes
- depth: 1
-
- - name: Build
- shell: |
- set -e
- cd {{ install_dir }}/SoapyRTLSDR
- mkdir -p build
- cd build
- cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=/etc/pisdr/optimizations.cmake \
- -DCMAKE_CXX_FLAGS=-latomic ../
- ninja install
- ldconfig
- echo "$(pwd)" >> {{ config_dir }}/build.dirs
|