-
Notifications
You must be signed in to change notification settings - Fork 4
/
org.gnome.TextEditor.Devel.json
96 lines (96 loc) · 2.81 KB
/
org.gnome.TextEditor.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
{
"app-id" : "org.gnome.TextEditor.Devel",
"runtime" : "org.gnome.Platform",
"runtime-version" : "master",
"sdk" : "org.gnome.Sdk",
"command" : "gnome-text-editor",
"finish-args" : [
"--device=dri",
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--talk-name=org.freedesktop.FileManager1",
"--talk-name=org.gtk.vfs",
"--talk-name=org.gtk.vfs.*",
"--filesystem=xdg-run/gvfsd",
"--filesystem=host"
],
"cleanup" : [
"/include",
"/lib/girepository-1.0",
"/lib/pkgconfig",
"/man",
"/share/aclocal",
"/share/doc",
"/share/gir-1.0",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules" : [
{
"name" : "libeditorconfig",
"buildsystem" : "cmake",
"config-opts" : [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
"-DCMAKE_INSTALL_LIBDIR:PATH=/app/lib",
"-DBUILD_DOCUMENTATION=OFF",
"-DINSTALL_HTML_DOC=OFF"
],
"sources" : [
{
"type" : "git",
"url" : "https://github.com/editorconfig/editorconfig-core-c.git",
"tag" : "v0.12.5"
}
]
},
{
"name" : "gtksourceview",
"buildsystem" : "meson",
"config-opts" : [
"-Ddocumentation=false",
"-Dvapi=false",
"-Dintrospection=disabled",
"-Dinstall-tests=false",
"-Dbuild-testsuite=false"
],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/gtksourceview.git",
"branch" : "master"
}
]
},
{
"name" : "libspelling",
"builddir" : true,
"buildsystem" : "meson",
"config-opts" : [ "-Ddocs=false", "-Dvapi=false" ],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/libspelling.git",
"branch" : "main"
}
]
},
{
"name" : "gnome-text-editor",
"builddir" : true,
"buildsystem" : "meson",
"config-opts" : [ "-Ddevelopment=true" ],
"sources" : [
{
"disable-shallow-clone" : true,
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/gnome-text-editor.git",
"branch" : "main"
}
]
}
]
}