-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorg.sigxcpu.Livi.Devel.json
132 lines (129 loc) · 2.98 KB
/
org.sigxcpu.Livi.Devel.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"app-id" : "org.sigxcpu.Livi.Devel",
"runtime" : "org.gnome.Platform",
"runtime-version" : "master",
"sdk" : "org.gnome.Sdk",
"command" : "livi",
"finish-args" : [
"--device=all",
"--share=ipc",
"--share=network",
"--socket=pulseaudio",
"--socket=wayland",
"--filesystem=xdg-download:ro",
"--filesystem=xdg-videos:ro"
],
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"build-options": {
"env": {
"GST_PLUGIN_SYSTEM_PATH": "/app/lib/gstreamer-1.0/",
"CARGO_HOME": "/run/build/cargo-c/cargo"
},
"append-path": "/usr/lib/sdk/rust-stable/bin"
},
"modules" : [
"build-aux/flathub/shared-modules/gudev/gudev.json",
{
"name": "gstreamer",
"buildsystem": "meson",
"config-opts": [
"--buildtype=release",
"--wrap-mode=nodownload",
"--libdir=lib",
"-Dbase=enabled",
"-Dgood=enabled",
"-Dbad=enabled",
"-Dugly=disabled",
"-Dgst-examples=disabled",
"-Dqt5=disabled",
"-Dtests=disabled",
"-Dexamples=disabled",
"-Dintrospection=disabled",
"-Ddoc=disabled",
"-Dgtk_doc=disabled",
"-Dgst-plugins-base:orc=enabled",
"-Dgst-plugins-bad:aom=disabled",
"-Dgst-plugins-bad:v4l2codecs=enabled",
"-Dgst-plugins-bad:va=enabled"
],
"sources": [
{
"type": "git",
"url": "https://gitlab.freedesktop.org/gstreamer/gstreamer.git",
"tag": "1.24.3",
"commit": "da69285863780ce0ebb51482edcf1d54c7c29533",
"disable-submodules": true
}
],
"cleanup": [
"/include",
"/lib/*.la",
"/lib/gstreamer-1.0/*.la",
"/lib/gstreamer-1.0/include",
"/lib/pkgconfig",
"/share/gtk-doc"
]
},
{
"name": "cargo-c",
"buildsystem": "simple",
"build-commands": [
"cargo install cargo-c --root /app"
],
"build-options": {
"build-args": [
"--share=network"
]
},
"cleanup": [
"*"
]
},
{
"name": "gst-plugins-rs",
"buildsystem": "simple",
"sources": [
{
"type": "git",
"url": "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs",
"branch": "0.12"
}
],
"build-options": {
"build-args": [
"--share=network"
]
},
"build-commands": [
"cargo cinstall --features=wayland,gtk_v4_14,dmabuf -p gst-plugin-gtk4 --prefix=/app"
]
},
{
"name" : "livi",
"builddir" : true,
"buildsystem" : "meson",
"config-opts": [
"-Dprofile=devel"
],
"sources" : [
{
"type" : "dir",
"path" : "."
}
]
}
]
}