make the packages role more generic

This commit is contained in:
Matthew Stobbs
2025-01-18 09:24:11 -07:00
parent 3d466e64c7
commit 333ee4c3f5
112 changed files with 1610 additions and 3 deletions

29
tasks/Debian/neovide.yml Normal file
View File

@@ -0,0 +1,29 @@
---
- name: install debian dependencies
when: ansible_architecture != "aarch64"
become: true
ansible.builtin.apt:
name:
- curl
- gnupg
- ca-certificates
- git
- gcc-multilib
- g++-multilib
- cmake
- libssl-dev
- pkg-config
- libfreetyp6-dev
- libasound2-dev
- libexpat1-dev
- libxcb-composite0-dev
- libbz2-dev
- libsndio-dev
- freeglut3-dev
- libxmu-dev
- libxi-dev
- libfontconfig1-dev
- libxcursor-dev
- ansible.builtin.include_tasks:
file: packages/Linux/neovide.yml