change layout for better management

- instead of just `syspkgs` and `srcpkgs` add more lists
  - `appimages`, `flatpkgs` and others as they come up
This commit is contained in:
Matthew Stobbs
2025-02-11 17:51:10 -07:00
parent 1202f7b212
commit 6f80af59e9
4 changed files with 31 additions and 0 deletions

15
tasks/build/alacritty.yml Normal file
View File

@@ -0,0 +1,15 @@
# 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 }}"

4
vars/alacritty.yml Normal file
View File

@@ -0,0 +1,4 @@
# vim: set filetype=yaml.ansible :
---
version: 0.15.0
install_prefix: "{{ default_install_prefix }}"

8
vars/bitwarden.yml Normal file
View File

@@ -0,0 +1,8 @@
# vim: set filetype=yaml.ansible :
---
install_prefix: "{{ default_install_prefix }}"
install_dir: /opt/appimage/bitwarden
install_method: flatpak
dobecome: true
owner: root
group: root

4
vars/go.yml Normal file
View File

@@ -0,0 +1,4 @@
# vim: set filetype=yaml.ansible :
---
version: 1.23.6
install_path: "{{ default_install_prefix }}"