adding hyprland src install

This commit is contained in:
Matthew Stobbs
2025-02-28 15:57:02 -07:00
parent 6365e266f4
commit 91cdc5056c
10 changed files with 191 additions and 0 deletions

12
tasks/pkgs/aquamarine.yml Normal file
View File

@@ -0,0 +1,12 @@
- name: Ensure pkg_deps are added
loop: aquamarine.pkg_deps
loop_control:
loop_var: pkg_dep
vars:
pkg: "{{ pkg_dep }}"
ansible.builtin.include_tasks:
file: addpkg.yml
- name: Append to pkg_src
ansible.builtin.set_fact:
pkg_src: "{{ pkg_src + ['aquamarine'] }}"

View File

@@ -0,0 +1,6 @@
- name: Append to pkg_sys and pkg_src
when:
- ansible_os_family == 'RedHat'
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + hyprwayland_scanner.build_deps }}"
pkg_src: "{{ pkg_src + ['hyprwayland_scanner'] }}"