選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

19 行
443 B

  1. ---
  2. - name: Git checkout
  3. git:
  4. repo: https://github.com/pothosware/SoapyAirspy.git
  5. dest: "{{ install_dir }}/SoapyAirspy"
  6. version: master
  7. recursive: yes
  8. depth: 1
  9. - name: Build
  10. shell: |
  11. set -e
  12. cd {{ install_dir }}/SoapyAirspy
  13. mkdir -p build
  14. cd build
  15. cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=/etc/pisdr/optimizations.cmake ../
  16. ninja install
  17. ldconfig
  18. echo "$(pwd)" >> {{ config_dir }}/build.dirs