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/airspy/airspyhf.git
- dest: "{{ install_dir }}/AirspyHF"
- version: master
- recursive: yes
- depth: 1
-
- - name: Build
- shell: |
- set -e
- cd {{ install_dir }}/AirspyHF
- mkdir -p build
- cd build
- cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=/etc/pisdr/optimizations.cmake \
- -DINSTALL_UDEV_RULES=ON ../
- ninja install
- ldconfig
- echo "$(pwd)" >> {{ config_dir }}/build.dirs
-
- - name: Install UDEV Rules
- shell: |
- echo "/etc/udev/rules.d/52-airspyhf.rules" >> {{ config_dir }}/udev.paths
|