Ansible_workstation/tasks/wine.yml

30 lines
638 B
YAML
Raw Normal View History

2018-08-25 06:59:23 +00:00
---
2018-08-25 07:08:53 +00:00
- name: Activate Multilib (name)
lineinfile:
dest: /etc/pacman.conf
regexp: '^#[multilib]$'
line: 'multilib'
backrefs: yes
- name: Activate Multilib (Include)
lineinfile:
dest: /etc/pacman.conf
regexp: '^Include = /etc/pacman.d/mirrorlist$'
line: 'Include = /etc/pacman.d/mirrorlist'
backrefs: 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
- lib32-alsa-plugins
- lib32-libpulse
- lib32-openal