13 lines
530 B
YAML
13 lines
530 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set hyprlang config
|
|
ansible.builtin.set_fact:
|
|
hyprlang:
|
|
vers: "{{ pkgconfig.hyprlang.version }}"
|
|
repo: "{{ pkgconfig.hyprlang.repo }}"
|
|
pkg_deps: "{{ pkgconfig.hyprlang.pkg_deps }}"
|
|
build_deps: "{{ pkgconfig.hyprlang.build_deps[ansible_os_family] }}"
|
|
git_path: "{{ d_tempdir.path }}/hyprlang"
|
|
installed_files: "{{ pkgconfig.hyprlang.build_installed_files }}"
|
|
clean: "{{ pkgconfig_hyprland_clean | default(package_default_clean_src) }}"
|