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.
|
- ---
- - name: light-locker-settings dependencies
- apt:
- name: "{{ item }}"
- with_items:
- - gettext
- - intltool
-
- - name: download light-locker-settings
- get_url:
- url: https://launchpad.net/light-locker-settings/1.5/1.5.0/+download/light-locker-settings-1.5.0.tar.bz2
- dest: /opt/light-locker-settings-1.5.0.tar.bz2
- checksum: sha256:c36bb7eacc66bafffce67f95a94ad84121162169b74e610c48cc5c4de777039c
-
- - name: unpack light-locker-settings
- unarchive:
- src: /opt/light-locker-settings-1.5.0.tar.bz2
- remote_src: yes
- dest: /opt
-
- - name: configure script for light-locker-settings
- command: ./configure
- args:
- chdir: /opt/light-locker-settings-1.5.0
- creates: /usr/local/bin/light-locker-settings
-
- - name: make light-locker-settings
- command: make
- args:
- chdir: /opt/light-locker-settings-1.5.0
- creates: /usr/local/bin/light-locker-settings
-
- - name: install light-locker-settings
- command: make install
- args:
- chdir: /opt/light-locker-settings-1.5.0
- creates: /usr/local/bin/light-locker-settings
|