Checkpoint
This commit is contained in:
parent
c501435876
commit
6f5266b63d
42 changed files with 652 additions and 136 deletions
38
roles/oversteer/tasks/main.yml
Normal file
38
roles/oversteer/tasks/main.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
|
||||
- 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
|
Loading…
Add table
Add a link
Reference in a new issue