選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

light-locker-settings.yaml 1.0KB

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