Import flatpak-builder config into the tree from gnome-apps-nightly.
Point libgee to a stable tag rather than master so we're not tracking development versions.
This commit is contained in:
parent
e17994f822
commit
26f99552b7
2 changed files with 111 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -12,6 +12,7 @@ debian/geary-dbg
|
|||
/geary
|
||||
/geary-mailer
|
||||
/geary-console
|
||||
.flatpak-builder
|
||||
*.diff
|
||||
*.patch
|
||||
*.xz
|
||||
|
|
|
|||
110
org.gnome.Geary.json
Normal file
110
org.gnome.Geary.json
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
/* flatpak-builder config for Geary. */
|
||||
{
|
||||
"app-id": "org.gnome.Geary",
|
||||
"runtime": "org.gnome.Platform",
|
||||
"runtime-version": "master",
|
||||
"sdk": "org.gnome.Sdk",
|
||||
"command": "geary",
|
||||
"tags": ["nightly"],
|
||||
"desktop-file-name-prefix": "(Nightly) ",
|
||||
"rename-icon": "geary",
|
||||
"copy-icon": true,
|
||||
"finish-args": [
|
||||
/* X11 + XShm access */
|
||||
"--share=ipc", "--socket=x11",
|
||||
|
||||
/* Wayland access */
|
||||
"--socket=wayland",
|
||||
|
||||
/* OpenGL access for WK2 */
|
||||
"--device=dri",
|
||||
|
||||
/* Bus access */
|
||||
"--socket=session-bus",
|
||||
|
||||
/* Pulseaudio */
|
||||
"--socket=pulseaudio",
|
||||
|
||||
/* Needs to talk to the network: */
|
||||
"--share=network",
|
||||
|
||||
/* Notification access */
|
||||
"--talk-name=org.freedesktop.Notifications",
|
||||
|
||||
/* Secrets access */
|
||||
"--talk-name=org.freedesktop.secrets",
|
||||
|
||||
/* 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": "-O2 -g",
|
||||
"cxxflags": "-O2 -g",
|
||||
"env": {
|
||||
"V": "1"
|
||||
}
|
||||
},
|
||||
"cleanup": ["/include", "/lib/pkgconfig",
|
||||
"/share/pkgconfig", "/share/aclocal",
|
||||
"/man", "/share/man", "/share/gtk-doc",
|
||||
"/share/vala",
|
||||
"*.la", "*.a"],
|
||||
"modules": [
|
||||
{
|
||||
"name": "gnome-doc-utils",
|
||||
"build-options": {
|
||||
"arch" : {
|
||||
/* Lie about our arch - no actual compilation happens here. */
|
||||
"arm": {
|
||||
"config-opts": [ "--build=amd64" ]
|
||||
},
|
||||
"aarch64": {
|
||||
"config-opts": [ "--build=amd64" ]
|
||||
}
|
||||
} },
|
||||
"sources": [
|
||||
{
|
||||
"type": "archive",
|
||||
"url": "https://download.gnome.org/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.10.tar.xz",
|
||||
"sha256": "cb0639ffa9550b6ddf3b62f3b1add92fb92ab4690d351f2353cffe668be8c4a6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "libgee",
|
||||
"build-options" : {
|
||||
"env": {
|
||||
"PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR": "/app/share/gir-1.0",
|
||||
"PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR": "/app/lib/girepository-1.0"
|
||||
}
|
||||
},
|
||||
"sources": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://git.gnome.org/browse/libgee",
|
||||
"tag": "0.20.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "gmime",
|
||||
"sources": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://git.gnome.org/browse/gmime",
|
||||
"branch": "gmime-2-6"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "geary",
|
||||
"sources": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://git.gnome.org/browse/geary"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue