21 lines
519 B
YAML
21 lines
519 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: "Configure {{ src_path }}"
|
|
ansible.builtin.command:
|
|
creates: "{{ src_path }}/build"
|
|
chdir: "{{ src_path }}"
|
|
argv: "{{ configure }}"
|
|
|
|
- name: "Build {{ src_path }}"
|
|
ansible.builtin.command:
|
|
creates: "{{ build_creates }}"
|
|
chdir: "{{ src_path }}"
|
|
argv: "{{ build }}"
|
|
|
|
- name: "Install {{ src_path }}"
|
|
become: "{{ do_become }}"
|
|
ansible.builtin.command:
|
|
creates: "{{ install_creates }}"
|
|
chdir: "{{ src_path }}"
|
|
argv: "{{ install }}"
|