-
Notifications
You must be signed in to change notification settings - Fork 8
/
08_custom_debs.yaml
58 lines (47 loc) · 1.49 KB
/
08_custom_debs.yaml
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
{{- $architecture := or .architecture "arm64" -}}
{{- $prevtargz := or .prevtargz "gnome.tar.gz" }}
{{- $targz := or .targz "custom_debs.tar.gz" }}
architecture: {{ $architecture }}
actions:
- action: unpack
file: {{ $prevtargz }}
- action: overlay
description: Store custom debian files in /root
source: overlays/custom_debs/
destination: /root/custom_debs/
- action: apt
description: install koreader dependencies
packages:
- fonts-noto-hinted
- fonts-droid-fallback
- action: run
description: Install KOReader
chroot: true
command: dpkg -i /root/custom_debs/koreader*.deb
# - action: run
# description: Install Pinenote DBUS Service
# chroot: true
# command: dpkg -i /root/custom_debs/pinenote-dbus-service*.deb
- action: run
description: Install evsieve
chroot: true
command: dpkg -i /root/custom_debs/evsieve_1.3.1_arm64.deb
- action: apt
description: install evsieve setup requirements
packages:
- libinput-tools
# - action: run
# description: Activate evsieve service
# chroot: true
# command: ln -s /etc/systemd/system/evsieve.service /etc/systemd/system/multi-user.target.wants/evsieve.service
- action: apt
description: Install pinenote-tweak packages
packages:
- pn-default-documents
- pn-default-gnome-config
- pn-defaut-xpp-config
- pn-handbook
- pn-suspend-on-cover
- pn-tweak-libinput-touch-arbitration
- action: pack
file: {{ $targz }}