install_openwrt_requirements.yml 666 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: install - openwrt - Install openwrt build system requirements
  3. become: yes
  4. ansible.builtin.apt:
  5. update_cache: yes
  6. state: present
  7. pkg:
  8. - build-essential
  9. - ccache
  10. - ecj
  11. - fastjar
  12. - file
  13. - g++
  14. - gawk
  15. - gettext
  16. - git
  17. - java-propose-classpath
  18. - libelf-dev
  19. - libncurses5-dev
  20. - libncursesw5-dev
  21. - libssl-dev
  22. - python
  23. - python2.7-dev
  24. - python3
  25. - unzip
  26. - wget
  27. - python3-distutils-extra
  28. - python3-setuptools
  29. - python3-dev
  30. - rsync
  31. - subversion
  32. - swig
  33. - time
  34. - xsltproc
  35. - zlib1g-dev