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
|
{
"app-id": "org.gnome.Nautilus",
"runtime": "org.gnome.Platform",
"runtime-version": "master",
"sdk": "org.gnome.Sdk",
"command": "nautilus",
"tags": ["devel", "development", "nightly"],
"desktop-file-name-prefix": "(Development) ",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Wayland access */
"--socket=wayland",
/* Online accounts support */
"--talk-name=org.gnome.OnlineAccounts",
/* Tracker */
"--talk-name=org.freedesktop.Tracker1",
/* XXX This sucks */
"--filesystem=home",
/* Browse gvfs */
"--talk-name=org.gtk.vfs", "--talk-name=org.gtk.vfs.*",
/* Needed for dconf to work */
"--filesystem=xdg-run/dconf", "--filesystem=~/.config/dconf:ro",
"--talk-name=ca.desrt.dconf", "--env=DCONF_USER_CONFIG_DIR=.config/dconf"
],
"build-options" : {
"cflags": "-Wno-deprecated-declarations -Og",
"cxxflags": "-Wno-deprecated-declarations -Og"
},
"cleanup": [ "/include", "/share/bash-completion" ],
"modules": [
{
"name": "libexif",
"sources": [
{
"type": "archive",
"url": "https://downloads.sourceforge.net/libexif/libexif-0.6.21.tar.bz2",
"sha256": "16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a"
},
/* For arm architectures */
{
"type": "shell",
"commands": [
"cp -f /usr/share/gnu-config/config.sub .",
"cp -f /usr/share/gnu-config/config.guess ."
]
}
]
},
{
"name": "exempi",
"config-opts": [
"--disable-unittest"
],
"sources": [
{
"type": "git",
"url": "https://anongit.freedesktop.org/git/exempi.git"
}
]
},
{
"name": "tracker",
"cleanup": [ "/bin", "/etc", "/libexec" ],
"config-opts": [ "--disable-miner-apps", "--disable-static",
"--disable-tracker-extract", "--disable-tracker-needle",
"--disable-tracker-preferences", "--disable-artwork",
"--disable-tracker-writeback", "--disable-miner-user-guides",
"--with-bash-completion-dir=no" ],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/tracker"
}
]
},
{
"name": "gnome-desktop",
"config-opts": ["--disable-debug-tools", "--disable-udev"],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/gnome-desktop"
}
]
},
{
"name": "gnome-autoar",
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/gnome-autoar"
}
]
},
{
"buildsystem": "meson",
"builddir": true,
"name": "nautilus",
"config-opts": [
"-Denable-desktop=false",
"-Denable-selinux=false",
"-Denable-xmp=true",
"-Denable-exif=true",
"--libdir=/app/lib"
],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/nautilus"
}
]
}
]
}
|