Files
ansible_role_package/tasks/build/alacritty.yml
Matthew Stobbs 6f80af59e9 change layout for better management
- instead of just `syspkgs` and `srcpkgs` add more lists
  - `appimages`, `flatpkgs` and others as they come up
2025-02-15 16:16:57 -07:00

16 lines
410 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Build and install alacritty
become: true
ansible.builtin.command:
creates: "{{ pkgconfig_alacritty.install_prefix }}/bin/alacritty"
cmd:
- cargo
- install
- --root
- "{{ pkgconfig_alacritty.install_prefix }}"
- --git
- "{{ pkgconfig_alacritty.git_repo }}"
- --tag
- "v{{ pkgconfig_alacritty.version }}"