-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcom.ranfdev.Lobjur.json
More file actions
65 lines (65 loc) · 1.9 KB
/
com.ranfdev.Lobjur.json
File metadata and controls
65 lines (65 loc) · 1.9 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
65
{
"$schema": "https://raw.githubusercontent.com/flatpak/flatpak-builder/main/data/flatpak-manifest.schema.json",
"app-id" : "com.ranfdev.Lobjur",
"runtime" : "org.gnome.Platform",
"runtime-version" : "49",
"sdk" : "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.openjdk25",
"org.freedesktop.Sdk.Extension.node22"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/openjdk25/bin:/usr/lib/sdk/node22/bin",
"env" : {
"NODE_PATH" : "/usr/lib/sdk/node22/lib/node_modules"
}
},
"command" : "lobjur",
"finish-args" : [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network"
],
"modules" : [
{
"name": "clojure",
"buildsystem": "simple",
"build-options": {
"build-args": [
"--share=network"
]
},
"build-commands": [
"bash ./linux-install.sh --prefix /app"
],
"sources": [
{
"type": "file",
"url": "https://download.clojure.org/install/linux-install-1.12.0.1479.sh",
"sha256": "94f29b9b66183bd58307c46fb561fd9e9148666bac13a4518a9931b6f989d830",
"dest-filename": "linux-install.sh"
}
]
},
{
"name" : "Lobjur",
"buildsystem" : "simple",
"build-options": {
"build-args": [
"--share=network"
]
},
"build-commands": [
"bash build-aux/build-flatpak.sh"
],
"sources" : [
{
"type" : "dir",
"path" : "."
}
]
}
]
}