-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
.flatpak-manifest.json
68 lines (68 loc) · 1.86 KB
/
.flatpak-manifest.json
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
{
"id": "org.kde.kate",
"branch": "master",
"runtime": "org.kde.Platform",
"runtime-version": "6.8",
"sdk": "org.kde.Sdk",
"command": "kate",
"tags": [
"nightly"
],
"desktop-file-name-suffix": " (Nightly)",
"finish-args": [
"--device=dri",
"--filesystem=host",
"--share=ipc",
"--socket=cups",
"--socket=fallback-x11",
"--socket=wayland",
"--system-talk-name=org.freedesktop.UDisks2",
"--talk-name=org.freedesktop.Flatpak"
],
"separate-locales": false,
"modules": [
{
"name": "markdownpart",
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "git",
"url": "https://invent.kde.org/utilities/markdownpart.git"
}
]
},
{
"name": "konsole",
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "git",
"url": "https://invent.kde.org/utilities/konsole.git"
}
]
},
{
"name": "kate",
"buildsystem": "cmake-ninja",
"builddir": true,
"post-install": [
"mv /app/bin/kate /app/bin/kate-bin",
"install -Dm755 ../kate-wrapper /app/bin/kate"
],
"sources": [
{
"type": "dir",
"path": "."
},
{
"type": "script",
"dest-filename": "kate-wrapper",
"commands": [
"export TMPDIR=\"$XDG_RUNTIME_DIR/app/$FLATPAK_ID\"",
"exec /app/bin/kate-bin \"$@\""
]
}
]
}
]
}