-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathorg.nickvision.application.json
More file actions
64 lines (64 loc) · 1.88 KB
/
org.nickvision.application.json
File metadata and controls
64 lines (64 loc) · 1.88 KB
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
{
"app-id" : "org.nickvision.application",
"runtime" : "org.gnome.Platform",
"runtime-version" : "50",
"sdk" : "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.dotnet10"
],
"build-options": {
"append-path": "/usr/lib/sdk/dotnet10/bin",
"append-ld-library-path": "/usr/lib/sdk/dotnet10/lib",
"prepend-pkg-config-path": "/usr/lib/sdk/dotnet10/lib/pkgconfig"
},
"command" : "org.nickvision.application",
"finish-args":[
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=ipc",
"--talk-name=org.freedesktop.Notifications",
"--talk-name=org.freedesktop.ScreenSaver",
"--talk-name=org.freedesktop.secrets"
],
"cleanup":[
"/include",
"/lib/debug",
"/lib/pkgconfig",
"/man",
"*.a"
],
"modules" : [
{
"name": "org.nickvision.application",
"buildsystem": "simple",
"build-options": {
"arch": {
"aarch64": {
"env" : {
"RUNTIME": "linux-arm64",
"container": "flatpak"
}
},
"x86_64": {
"env" : {
"RUNTIME": "linux-x64",
"container": "flatpak"
}
}
}
},
"build-commands": [
"chmod +x ./resources/linux/publish-and-install.sh",
"./resources/linux/publish-and-install.sh /app $RUNTIME"
],
"sources": [
{
"type": "dir",
"path": ".."
},
"nuget-sources.json"
]
}
]
}