2024-07-06 22:05:55 +00:00
|
|
|
- name: Build aur packages
|
|
|
|
register: buildaur
|
|
|
|
become_user: "{{ build_user.name }}"
|
|
|
|
command: "aurutils-sync --no-view {{ item }}"
|
|
|
|
args:
|
|
|
|
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
|
|
|
|
loop:
|
|
|
|
- go-chromecast-git
|
|
|
|
|
|
|
|
- name: Update cache
|
|
|
|
when: buildaur.changed
|
|
|
|
pacman:
|
|
|
|
name: []
|
|
|
|
state: present
|
|
|
|
update_cache: true
|
|
|
|
|
2022-11-26 23:41:41 +00:00
|
|
|
- name: Install packages
|
|
|
|
package:
|
|
|
|
name:
|
2023-11-14 20:04:46 +00:00
|
|
|
- yt-dlp
|
2024-07-06 22:05:55 +00:00
|
|
|
- go-chromecast-git
|
2022-11-26 23:41:41 +00:00
|
|
|
state: present
|