-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcom.github.devalien.workspaces.json
63 lines (63 loc) · 1.88 KB
/
com.github.devalien.workspaces.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
{
"app-id": "com.github.devalien.workspaces",
"runtime": "org.freedesktop.Platform",
"runtime-version": "19.08",
"sdk": "org.freedesktop.Sdk",
"base": "io.elementary.BaseApp",
"base-version": "juno-19.08",
"command": "workspaces-wrapper",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--filesystem=host",
"--talk-name=org.freedesktop.Flatpak"
],
"cleanup": [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"/share/vala",
"*.la",
"*.a"
],
"modules": [
{
"name": "wrapper",
"buildsystem": "simple",
"build-commands": [
"install -m755 workspaces-wrapper /app/bin"
],
"sources": [
{
"type": "script",
"dest-filename": "workspaces-wrapper",
"commands": [
"export PATH=$PATH:/run/host/usr/bin",
"export XDG_DATA_DIRS=$XDG_DATA_DIRS:/run/host/usr/share",
"com.github.devalien.workspaces"
]
}
]
},
{
"name": "Workspaces",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://github.com/devalien/workspaces.git",
"tag": "1.2.1",
"commit": "919375876e4bc7625ddd4800c41750efac9c6ba3"
}
],
"post-install": [
"sed -i s:Exec=com.github.devalien.workspaces:Exec=/app/bin/workspaces-wrapper: /app/share/applications/com.github.devalien.workspaces.desktop"
]
}
]
}