flutter, get it installing on Artix by converting the rest of the package names to variables.

This commit is contained in:
2026-08-04 08:05:20 -07:00
parent be849d9c70
commit c66938f738
2 changed files with 21 additions and 7 deletions
+14
View File
@@ -22,6 +22,13 @@
ninja: ninja ninja: ninja
notify_send: libnotify notify_send: libnotify
fyi: fyi fyi: fyi
gtk3: gtk3
xz_libs: xz
cpp: libstdc++
c_libs: glibc
cpp_libs: libstdc++
z_libs: zlib
bzip: bzip2
- name: General | Facts | Package | Parrot OS Fixes - name: General | Facts | Package | Parrot OS Fixes
set_fact: set_fact:
@@ -44,6 +51,13 @@
mesa_utils: libglu1-mesa mesa_utils: libglu1-mesa
ninja: ninja-build ninja: ninja-build
notify_send: libnotify-bin notify_send: libnotify-bin
gtk3: libgtk-3-dev
xz_libs: liblzma-dev
cpp: libstdc++-12-dev
c_libs: libc6:amd64
cpp_libs: libstdc++6
z_libs: lib32z1
bzip: libbz2-1.0
when: ansible_pkg_mgr == "apt" when: ansible_pkg_mgr == "apt"
- name: General | Facts | Package | pacman - name: General | Facts | Package | pacman
+7 -7
View File
@@ -69,9 +69,9 @@
- git - git
- "{{ ninja }}" - "{{ ninja }}"
- pkg-config - pkg-config
- libgtk-3-dev - "{{ gtk3 }}"
- liblzma-dev - "{{ xz_libs }}"
- libstdc++-12-dev - "{{ cpp }}"
state: present state: present
when: coding == true when: coding == true
@@ -79,10 +79,10 @@
- name: Workstation | Linux | Software | Flutter | Android App Dependencies - name: Workstation | Linux | Software | Flutter | Android App Dependencies
package: package:
name: name:
- libc6:amd64 - "{{ c_libs }}"
- libstdc++6 - "{{ cpp_libs }}"
- lib32z1 - "{{ z_libs }}"
- libbz2-1.0 - "{{ bzip }}"
state: present state: present
when: coding == true when: coding == true