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.
 
 
 
 
 

18 line
424 B

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