11 lines
239 B
YAML
11 lines
239 B
YAML
- name: Pull down dwm build from gitea
|
|
ansible.builtin.git:
|
|
repo: "https://git.mjwilson.org/mike/dwm"
|
|
dest: "{{ src_dir }}/dwm"
|
|
|
|
- name: Build DWM
|
|
community.general.make:
|
|
chdir: "{{ src_dir }}/dwm"
|
|
params:
|
|
clean:
|