ansible-desktop/roles/laptop/tasks/supergfxctl-build.yml

25 lines
510 B
YAML
Raw Normal View History

2023-08-26 21:57:26 +00:00
- name: install required packages for supergfxctl
become: yes
apt:
update_cache: yes
pkg:
- curl
when: ansible_distribution == "Ubuntu"
- name: checkout supergfxctl repo
git:
repo: "{{ supergfxctl.repo }}"
dest: "{{ desktop_src_dir }}/supergfxctl"
clone: yes
update: yes
- name: build supergfxctl
make:
chdir: "{{ desktop_src_dir }}/supergfxctl"
- name: install supergfxctl
become: yes
make:
chdir: "{{ desktop_src_dir }}/supergfxctl"
target: install