-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinterception-tools.src.pb
74 lines (74 loc) · 1.7 KB
/
interception-tools.src.pb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
- # note: now included in debian
- hosts: all
vars:
TYPE: interception-tools
INSTANCE: git
REPOS:
interception-tools: https://gitlab.com/interception/linux/tools
caps2esc: https://gitlab.com/interception/linux/plugins/caps2esc
OPT_DIR: true
PKGS:
- libevdev-dev
- libyaml-cpp-dev
- libudev-dev
- libboost-container-dev
ETC_FILES:
- name: caps2esc.yaml
content: |
- JOB: "intercept -g $DEVNODE | caps2esc | uinput -d $DEVNODE"
DEVICE:
EVENTS:
EV_KEY: [KEY_CAPSLOCK, KEY_ESC]
BINS_DIR: "{{ OPT }}/bin"
LINKS:
#- key: bin
# value: "{{ BINS_DIR }}"
bin: "{{ BINS_DIR }}"
BINS:
- name: build-interception-tools.sh
basedir: interception-tools
exec: |
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX={{OPT}} ..
make
make install
- name: build-caps2esc.sh
basedir: caps2esc
exec: |
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX={{OPT}} ..
make
make install
- name: build.sh
run: true
basedir: True
exec: |
./bin/build-interception-tools.sh
./bin/build-caps2esc.sh
# links to built resource
- name: caps2esc
src: false
global: true
delay: postRun
- name: intercept
src: false
global: true
delay: postRun
- name: udevmon
src: false
global: true
delay: postRun
- name: uinput
src: false
global: true
delay: postRun
PKGS:
- libboost-dev
- libevdev-dev
- libudev-dev
- libyaml-cpp-dev
tasks:
- include: tasks/compfuzor.includes type=src