39 lines
783 B
YAML
39 lines
783 B
YAML
|
---
|
||
|
|
||
|
- name: Install dependencies
|
||
|
dnf:
|
||
|
name:
|
||
|
- python3
|
||
|
- python3-distutils-extra
|
||
|
- python3-gobject
|
||
|
- python3-pyudev
|
||
|
- python3-pyxdg
|
||
|
- python3-evdev
|
||
|
- gettext
|
||
|
- meson
|
||
|
- appstream
|
||
|
- desktop-file-utils
|
||
|
- python3-matplotlib-gtk3
|
||
|
- python3-scipy
|
||
|
state: present
|
||
|
become: yes
|
||
|
|
||
|
- name: Clone berarma/oversteer
|
||
|
git:
|
||
|
repo: 'https://github.com/berarma/oversteer.git'
|
||
|
version: master
|
||
|
dest: ~/.cache/berarma-oversteer
|
||
|
|
||
|
- name: meson build
|
||
|
command:
|
||
|
chdir: ~/.cache/berarma-oversteer/
|
||
|
cmd: meson build
|
||
|
creates: ~/.cache/berarma-oversteer/build
|
||
|
|
||
|
- name: ninja install
|
||
|
command:
|
||
|
chdir: /home/jonathan/.cache/berarma-oversteer/build
|
||
|
cmd: ninja install
|
||
|
creates: /usr/local/bin/oversteer
|
||
|
become: yes
|