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
|
{
"app-id": "com.github.rimerosolutions.entrusted",
"runtime": "org.freedesktop.Platform",
"runtime-version": "21.08",
"base": "org.electronjs.Electron2.BaseApp",
"base-version": "21.08",
"sdk": "org.freedesktop.Sdk",
"command": "entrusted-run",
"finish-args": [
"--share=network",
"--share=ipc",
"--socket=x11",
"--device=all"
],
"modules": [
{
"name": "qemu",
"config-opts": [
"--disable-user",
"--enable-kvm",
"--disable-spice",
"--disable-opengl",
"--disable-virglrenderer",
"--disable-usb-redir",
"--disable-smartcard",
"--python=/bin/python3",
"--target-list=x86_64-softmmu"
],
"sources": [
{
"type": "archive",
"url": "https://download.qemu.org/qemu-6.2.0.tar.xz",
"sha256": "68e15d8e45ac56326e0b9a4afa8b49a3dfe8aba3488221d098c84698bca65b45"
}
]
},
{
"name": "entrusted",
"buildsystem": "simple",
"sources": [
{
"type": "archive",
"path": "./entrusted-linux-x64.tar.xz"
},
{
"type": "file",
"path": "./entrusted-run"
},
{
"type": "file",
"url": "https://github.com/rimerosolutions/entrusted/releases/download/0.2.4/entrusted-livecd-amd64-0.2.4.iso",
"sha256": "91f8107b571b09289c04d4ac518a1e36ce9d42bfa5e15c885da1fec8a67ca9aa",
"dest-filename": "entrusted.iso"
}
],
"build-commands": [
"mkdir -p /app/bin/entrusted",
"cp -r * /app/bin/entrusted/.",
"install entrusted.iso /app/bin/entrusted/entrusted.iso",
"install -Dm755 entrusted-run /app/bin/entrusted-run"
]
}
]
}
|