working on alacritty source install

- adding cargo build helper
This commit is contained in:
Matthew Stobbs
2026-01-24 13:26:07 -07:00
parent ff740426c8
commit 1a8f402c68
4 changed files with 147 additions and 43 deletions

View File

@@ -1,7 +1,10 @@
- name: Clone git repository {{ src_pkg }}
# vim: set filetype=yaml.ansible :
---
- name: Clone git repository
ansible.builtin.git:
depth: 1
force: true
dest: "{{ src_path }}"
repo: "{{ src_gitrepo }}"
version: "{{ src_version | default(omit) }}"
depth: "{{ git_depth | default(1) }}"
dest: "{{ git_path }}"
force: "{{ git_force | default(true) }}"
recursive: "{{ git_recursive | default(true) }}"
repo: "{{ git_repo }}"
version: "{{ git_version | default(omit) }}"