debian.yml 415 B

12345678910111213141516
  1. - name: Install libsodium via Apt
  2. when: repo_universe_factory_available
  3. apt: name={{item}} state=latest update_cache=yes
  4. with_items:
  5. - libsodium13
  6. - libsodium-dev
  7. - name: Install build dependencies for libsodium
  8. when: not repo_universe_factory_available
  9. apt: name={{item}} state=present
  10. with_items:
  11. - build-essential
  12. - autoconf
  13. - include: source.yml
  14. when: not repo_universe_factory_available