14 lines
549 B
YAML
14 lines
549 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set hyprland config
|
|
ansible.builtin.set_fact:
|
|
hyprland:
|
|
vers: "{{ pkgconfig.hyprland.version }}"
|
|
repo: "{{ pkgconfig.hyprland.repo }}"
|
|
pkg_deps: "{{ pkgconfig.hyprland.pkg_deps }}"
|
|
build_deps: "{{ pkgconfig.hyprland.build_deps[ansible_os_family] }}"
|
|
installed_files: "{{ pkgconfig.hyprland.build_installed_files }}"
|
|
git_path: "{{ d_tempdir.path }}/Hyprland"
|
|
prefix: "/usr/local"
|
|
clean: "{{ pkgconfig_hyprland_clean | default(default.clean_src) }}"
|