Geoffrey Frogeye
59aaf63d4a
Probably the fourth I ever created? Will this one last? I don't know! Doesn't have pip support for now, but probably something requirements.txt based will be a bit more proper
17 lines
521 B
YAML
17 lines
521 B
YAML
- name: Create and install meta package for Arch Linux
|
|
block:
|
|
- name: Generate meta package PKGBUILD
|
|
template:
|
|
src: PKGBUILD.j2
|
|
dest: "{{ ansible_user_dir }}/.cache/automatrop/PKGBUILD"
|
|
listen: "software changed"
|
|
|
|
- name: Install meta package
|
|
aur:
|
|
name: "automatrop-packages-{{ inventory_hostname_short }}"
|
|
local_pkgbuild: "{{ ansible_user_dir }}/.cache/automatrop"
|
|
use: makepkg
|
|
state: latest
|
|
listen: "software changed"
|
|
when: arch_based
|