make the packages role more generic
This commit is contained in:
26
tasks/Debian/alacritty.yml
Normal file
26
tasks/Debian/alacritty.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
- name: install rust and cargo
|
||||
ansible.builtin.include_tasks:
|
||||
file: "packages/{{ ansible_os_family }}/rust.yml"
|
||||
tags:
|
||||
- rust
|
||||
- dependency
|
||||
|
||||
- name: install alacritty dependencies for Debian based distributions
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
name:
|
||||
- cmake
|
||||
- pkg-config
|
||||
- libfreetype6-dev
|
||||
- libfontconfig1-dev
|
||||
- libxcb-xfixes0-dev
|
||||
- libxkbcommon-dev
|
||||
- python3
|
||||
state: present
|
||||
tags:
|
||||
- dependency
|
||||
- Debian
|
||||
|
||||
- include_tasks:
|
||||
file: packages/Linux/alacritty.yml
|
||||
Reference in New Issue
Block a user