-
-
Notifications
You must be signed in to change notification settings - Fork 268
/
.flatpak-manifest.json
89 lines (89 loc) · 2.23 KB
/
.flatpak-manifest.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
{
"id": "org.kde.kdenlive",
"default-branch": "master",
"runtime": "org.kde.Platform",
"runtime-version": "6.7",
"sdk": "org.kde.Sdk",
"sdk-extensions" : [ "org.freedesktop.Sdk.Extension.llvm18" ],
"command": "kdenlive",
"rename-icon": "kdenlive",
"desktop-file-name-suffix": " (Nightly)",
"finish-args": [
"--require-version=0.11.4",
"--share=ipc",
"--socket=wayland",
"--socket=fallback-x11",
"--device=all",
"--socket=pulseaudio",
"--share=network",
"--filesystem=host",
"--filesystem=xdg-run/pipewire-0",
"--filesystem=xdg-config/kdeglobals:ro",
"--env=TMPDIR=/var/tmp",
"--env=QT_ENABLE_HIGHDPI_SCALING=1",
"--env=FREI0R_PATH=/app/lib/frei0r-1",
"--env=LADSPA_PATH=/app/extensions/Plugins/ladspa:/app/lib/ladspa",
"--env=PACKAGE_TYPE=flatpak"
],
"add-extensions": {
"org.freedesktop.LinuxAudio.Plugins": {
"directory": "extensions/Plugins",
"version": "23.08",
"add-ld-path": "lib",
"merge-dirs": "ladspa",
"subdirectories": true,
"no-autodownload": true
},
"org.freedesktop.LinuxAudio.Plugins.swh": {
"directory": "extensions/Plugins/swh",
"version": "23.08",
"add-ld-path": "lib",
"merge-dirs": "ladspa",
"autodelete": false,
"subdirectories": true
},
"org.freedesktop.LinuxAudio.Plugins.TAP": {
"directory": "extensions/Plugins/TAP",
"version": "23.08",
"add-ld-path": "lib",
"merge-dirs": "ladspa",
"autodelete": false,
"subdirectories": true
}
},
"cleanup": [
"/include",
"/lib/pkgconfig",
"/lib/cmake",
"/mkspecs",
"/share/aclocal",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.a",
"*.la",
"*.cmake"
],
"modules": [
"packaging/flatpak/org.kde.kdenlive-dependencies.json",
{
"name": "kdenlive",
"buildsystem": "cmake-ninja",
"builddir": true,
"config-opts": [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
"-DRELEASE_BUILD=OFF",
"-DBUILD_TESTING=OFF"
],
"post-install": [
"install -d /app/extensions/Plugins"
],
"sources": [
{
"type": "dir",
"path": "."
}
]
}
]
}