adding Alpine specific installations
This commit is contained in:
@@ -15,14 +15,14 @@
|
||||
block:
|
||||
- name: Append ghostty build deps to pkg_sys
|
||||
ansible.builtin.set_fact:
|
||||
pkg_sys: "{{ pkg_sys + ghostty.deps }}"
|
||||
pkg_sys: "{{ pkg_sys + ghostty.build_deps }}"
|
||||
|
||||
- name: Append ghostty to pkg_src
|
||||
notify:
|
||||
- Depend zig
|
||||
changed_when: true
|
||||
ansible.builtin.set_fact:
|
||||
pkg_src: "{{ pkg_src + ['ghostty'] }}"
|
||||
pkg_src: "{{ pkg_src + [ghostty.pkg] }}"
|
||||
|
||||
- name: Append ghostty to pkg_appimage
|
||||
when:
|
||||
@@ -42,13 +42,13 @@
|
||||
- Depend terra repo
|
||||
changed_when: true
|
||||
ansible.builtin.set_fact:
|
||||
pkg_sys: "{{ pkg_sys + ['ghostty'] }}"
|
||||
pkg_sys: "{{ pkg_sys + [ghostty.pkg] }}"
|
||||
|
||||
- name: Append ghostty to pkg_cask
|
||||
when:
|
||||
- ghostty.method == 'brew'
|
||||
ansible.builtin.set_fact:
|
||||
pkg_cask: "{{ pkg_cask + ['ghostty'] }}"
|
||||
pkg_cask: "{{ pkg_cask + [ghostty.pkg] }}"
|
||||
|
||||
- name: Set ghostty_configured
|
||||
ansible.builtin.set_fact:
|
||||
|
||||
Reference in New Issue
Block a user