forked from KDE/kommit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flatpak-manifest.json
38 lines (37 loc) · 1.03 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
{
"id": "org.kde.kommit",
"branch": "master",
"runtime": "org.kde.Platform",
"runtime-version": "6.7",
"sdk": "org.kde.Sdk",
"command": "kommit",
"tags": ["nightly"],
"desktop-file-name-suffix": " (Nightly)",
"finish-args": ["--share=ipc", "--socket=fallback-x11", "--socket=wayland" ],
"modules": [
{
"name" : "libgit2",
"buildsystem": "cmake-ninja",
"config-opts" : [
"-DBUILD_TESTING=OFF",
"-DCMAKE_BUILD_TYPE=Release"
],
"sources" : [
{
"type" : "git",
"url" : "https://github.com/libgit2/libgit2.git",
"branch" : "maint/v1.8"
}
]
},
{
"name": "kommit",
"buildsystem": "cmake-ninja",
"config-opts" : [
"-DBUILD_TESTING=OFF",
"-DBUILD_WITH_QT6=ON"
],
"sources": [ { "type": "dir", "path": "." } ]
}
]
}