Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

light-locker-settings.yaml 1.1KB

il y a 6 ans
123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. - name: light-locker-settings dependencies
  3. apt:
  4. name: "{{ item }}"
  5. with_items:
  6. - gettext
  7. - intltool
  8. - python3-psutil
  9. - build-essential
  10. - name: download light-locker-settings
  11. get_url:
  12. url: https://github.com/Antergos/light-locker-settings/archive/1.5.3.tar.gz
  13. dest: /opt/light-locker-settings-1.5.3.tar.bz2
  14. checksum: sha256:9174ee896d9ea7f41cb14eed61bea473de4b57278858bbd32045f1ed64858fcd
  15. - name: unpack light-locker-settings
  16. unarchive:
  17. src: /opt/light-locker-settings-1.5.3.tar.bz2
  18. remote_src: yes
  19. dest: /opt
  20. - name: configure script for light-locker-settings
  21. command: ./configure --prefix=/usr --python=python3
  22. args:
  23. chdir: /opt/light-locker-settings-1.5.3
  24. creates: /usr/local/bin/light-locker-settings
  25. - name: make light-locker-settings
  26. command: make
  27. args:
  28. chdir: /opt/light-locker-settings-1.5.3
  29. creates: /usr/local/bin/light-locker-settings
  30. - name: install light-locker-settings
  31. command: make install
  32. args:
  33. chdir: /opt/light-locker-settings-1.5.3
  34. creates: /usr/local/bin/light-locker-settings