-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcom.vixalien.sticky.json
70 lines (70 loc) · 1.74 KB
/
com.vixalien.sticky.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
{
"app-id" : "com.vixalien.sticky",
"runtime" : "org.gnome.Platform",
"runtime-version" : "43",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.node18"
],
"tags" : [
"nightly"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/node18/bin"
},
"command" : "com.vixalien.sticky",
"finish-args" : [
"--share=ipc",
"--device=dri",
"--socket=wayland",
"--socket=fallback-x11",
"--env=GJS_DISABLE_JIT=1"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a",
"/yarn-mirror"
],
"modules" : [
{
"name" : "yarn-deps",
"buildsystem" : "simple",
"build-commands" : [
"/usr/lib/sdk/node18/enable.sh",
"mkdir -p /app",
"cp -r $FLATPAK_BUILDER_BUILDDIR/flatpak-node/yarn-mirror/ /app"
],
"sources" : [
"generated-sources.json"
]
},
{
"name": "write-yarnrc",
"buildsystem": "simple",
"build-commands": [
"echo yarn-offline-mirror \"/app/yarn-mirror\" > /app/.yarnrc"
]
},
{
"name" : "sticky-notes",
"buildsystem" : "meson",
"config-opts" : [
"-Dyarnrc=/app/.yarnrc"
],
"sources" : [
{
"type" : "git",
"url" : ".",
"branch": "main"
}
]
}
]
}