Added role libreoffice

This commit is contained in:
2021-11-13 18:08:49 +01:00
parent 3f9156c53e
commit 9291240bba
6 changed files with 29 additions and 16 deletions

View File

@@ -6,7 +6,6 @@
- supertuxkart
- gnuchess
- sauerbraten
- assaultcube
- minetest
- mari0
- retroarch

View File

@@ -37,21 +37,6 @@
# browsers
- chromium
# office software
- ttf-liberation
- libreoffice-fresh
- libreoffice-fresh-de
- libreoffice-fresh-eo
- libreoffice-fresh-es
- libreoffice-fresh-nl
# spelling software
- hunspell
- hunspell-de
- hunspell-es_es
- hunspell-en_US
- hunspell-nl
# video/picture manipulation
- gimp
- blender

View File

@@ -0,0 +1,10 @@
- name: install hunspell
community.general.pacman:
name: hunspell
state: present
- name: install hunspell language packages
community.general.pacman:
name: "hunspell-{{ item }}"
state: present
loop: "{{hunspell_languages}}"

View File

@@ -0,0 +1,2 @@
dependencies:
- hunspell

View File

@@ -0,0 +1,12 @@
- name: install libreoffice
community.general.pacman:
name:
- ttf-liberation
- libreoffice-fresh
state: present
- name: install libreoffice language packages
community.general.pacman:
name: "libreoffice-fresh-{{ item }}"
state: present
loop: "{{libreoffice_languages}}"