-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
io.github.elevenhsoft.WebApps.json
52 lines (52 loc) · 1.33 KB
/
io.github.elevenhsoft.WebApps.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
{
"app-id": "io.github.elevenhsoft.WebApps",
"runtime": "org.freedesktop.Platform",
"runtime-version": "24.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"base": "com.system76.Cosmic.BaseApp",
"base-version": "stable",
"command": "quick-webapps",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network",
"--filesystem=host-os",
"--filesystem=/var/lib/flatpak:ro",
"--filesystem=~/.local/share/flatpak:ro",
"--filesystem=~/.local/share/applications:rw",
"--filesystem=~/.local/share/icons:create",
"--filesystem=~/.local/share/quick-webapps:create",
"--filesystem=~/.var/app:rw"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin"
},
"modules": [
{
"name": "quick-webapps",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/quick-webapps/cargo"
}
},
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
"cargo --offline build --release --verbose",
"just flatpak-install"
],
"sources": [
{
"type": "dir",
"path": "."
},
"cargo-sources.json"
]
}
]
}