Ansible_workstation/tasks/wine.yml

25 lines
531 B
YAML
Raw Normal View History

2018-08-25 06:59:23 +00:00
---
2018-08-25 07:27:14 +00:00
- name: Activate Multilib
2018-08-25 07:08:53 +00:00
lineinfile:
dest: /etc/pacman.conf
2018-08-25 07:27:14 +00:00
regexp: '^#[multilib]\n#Include = /etc/pacman.d/mirrorlist'
line: 'multilib\nInclude = /etc/pacman.d/mirrorlist'
2018-08-25 07:08:53 +00:00
backrefs: yes
2018-08-25 07:12:23 +00:00
- name: Update pacman cache
pacman:
update_cache: yes
2018-08-25 06:59:23 +00:00
- name: Install WINE
pacman:
2018-08-25 07:00:57 +00:00
name: "{{ item }}"
2018-08-25 06:59:23 +00:00
state: present
with_items:
- lib32-libglvnd # wine has multiple fulfilments for lib32-libgl
- wine
2018-08-25 07:08:53 +00:00
- winetricks
2018-08-25 06:59:23 +00:00
- wine_gecko
- wine-mono
# Audio
2018-08-25 07:21:46 +00:00
#- lib32-alsa-plugins