-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg.imprimis.Imprimis.json
69 lines (68 loc) · 1.5 KB
/
org.imprimis.Imprimis.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
{
"id": "org.imprimis.Imprimis",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"platform-extensions": [],
"sdk": "org.freedesktop.Sdk",
"command": "imprimis",
"modules": [
"shared-modules/SDL2/SDL2-no-libdecor.json",
"SDL2/libfreetype.json",
"SDL2/SDL_ttf.json",
"SDL2/SDL_image.json",
"SDL2/SDL_mixer.json",
"shared-modules/glew/glew.json",
"SDL2/glu-9.json",
{
"name": "Libprimis",
"buildsystem": "simple",
"build-commands": [
"make -C src --jobs $FLATPAK_BUILDER_N_JOBS",
"PREFIX=/app make -C src install"
],
"only_arches": [
"x86_64"
],
"sources": [
{
"type": "git",
"url": "https://github.com/project-imprimis/libprimis/",
"branch": "main"
}
],
"cleanup": [
"/include"
]
},
{
"name": "Imprimis",
"buildsystem": "simple",
"build-commands": [
"make --jobs $FLATPAK_BUILDER_N_JOBS",
"PREFIX=/app make install"
],
"only_arches": [
"x86_64"
],
"sources": [
{
"type": "git",
"url": "https://github.com/project-imprimis/imprimis/",
"branch": "master"
}
],
"cleanup": [
"/include"
]
}
],
"finish-args": [
"--socket=wayland",
"--socket=fallback-x11",
"--share=ipc",
"--socket=pulseaudio",
"--share=network",
"--device=dri",
"--filesystem=~/.imprimis"
]
}