working on more package, almost done

This commit is contained in:
2026-03-27 20:34:40 -06:00
parent 4a638d9dcc
commit 7f00bb70dc
21 changed files with 122 additions and 80 deletions

View File

@@ -25,3 +25,12 @@
when:
- pkg.archive is defined
ansible.bulitin.include_tasks: helpers/archive.yml
- name: Ensure facts are set
ansible.builtin.set_fact:
zbf: "{{ pkg.build_flags | default([]) }}"
- name: Zig build and install
ansible.builtin.command:
argv: "{{ ['zig', 'build' '-p', install_prefix] + zbf }}"
chdir: "{{ pkg.source_path }}"