15 lines
453 B
YAML
15 lines
453 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
# build deps: pugixml
|
|
- name: Load hyprwayland-scanner config
|
|
ansible.builtin.include_tasks:
|
|
file: config/hyprwayland_scanner.yml
|
|
|
|
- name: Append hyprwayland-scanner build_deps to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + hyprwayland_scanner.build_deps }}"
|
|
|
|
- name: Append hyprwayland-scanner to pkg_src
|
|
ansible.builtin.set_fact:
|
|
pkg_src: "{{ pkg_src + ['hyprwayland_scanner'] }}"
|