debian.yml 407 B

1234567891011121314151617
  1. - name: Install libuecc via Apt
  2. when: repo_universe_factory_available
  3. apt: name={{item}} state=latest update_cache=yes
  4. with_items:
  5. - libuecc0
  6. - libuecc-dev
  7. - name: Install libuecc build dependencies
  8. when: not repo_universe_factory_available
  9. apt: name={{item}} state=present
  10. with_items:
  11. - cmake
  12. - build-essential
  13. - git
  14. - include: source.yml
  15. when: not repo_universe_factory_available