forked from linuxmint/webapp-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.github.junalmeida.webapps_manager.json
72 lines (72 loc) · 2 KB
/
io.github.junalmeida.webapps_manager.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
69
70
71
72
{
"id": "io.github.junalmeida.webapps_manager",
"runtime": "org.kde.Platform",
"runtime-version": "6.7",
"sdk": "org.kde.Sdk",
"base": "io.qt.PySide.BaseApp",
"base-version": "6.7",
"command": "webapps_manager",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network",
"--filesystem=host-os",
"--filesystem=/var/lib/flatpak",
"--filesystem=home",
"--talk-name=org.freedesktop.Flatpak"
],
"modules": [
"python3-modules.json",
{
"name": "debugpy",
"buildsystem": "simple",
"build-options": {
"build-args": [
"--share=network"
]
},
"build-commands": [
"pip3 install --prefix=/app --no-cache-dir debugpy"
]
},
{
"name": "webapps_manager",
"buildsystem": "simple",
"build-commands": [
"python -m pip install --no-build-isolation --prefix=/app .",
"cp -R share/* ${FLATPAK_DEST}/share/",
"cp -R etc/* ${FLATPAK_DEST}/etc/"
],
"sources": [
{
"type": "dir",
"path": "src",
"dest": "src"
},
{
"type": "dir",
"path": "app/share",
"dest": "share"
},
{
"type": "dir",
"path": "app/etc",
"dest": "etc"
},
{
"type": "file",
"path": "pyproject.toml"
},
{
"type": "file",
"path": "MANIFEST.in"
}
]
}
],
"cleanup-commands": [
"/app/cleanup-BaseApp.sh"
]
}