diff options
author | Markus Volk <f_l_k@t-online.de> | 2022-01-20 21:26:42 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-01-25 09:13:09 -0800 |
commit | 5b73a63ea08665a15256d0f0efcc7be886e3d863 (patch) | |
tree | 90ed4ca0af3c63bad1eb235d5fd049fe86df62ac | |
parent | 5a3b14466783def52b855f0e079f9b346b0021a8 (diff) | |
download | meta-openembedded-5b73a63ea08665a15256d0f0efcc7be886e3d863.tar.gz |
geary: initial add recipe
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-gnome/recipes-connectivity/geary/geary_40.0.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta-gnome/recipes-connectivity/geary/geary_40.0.bb b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb new file mode 100644 index 0000000000..e4d07ad293 --- /dev/null +++ b/meta-gnome/recipes-connectivity/geary/geary_40.0.bb | |||
@@ -0,0 +1,54 @@ | |||
1 | SUMMARY = "Geary is an email application built around conversations, for the GNOME 3 desktop." | ||
2 | SECTION = "network" | ||
3 | LICENSE = "LGPL-2.1" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=2a2244d5a13871ad950c55877546a6a2" | ||
5 | |||
6 | DEPENDS = " \ | ||
7 | appstream-glib \ | ||
8 | cairo \ | ||
9 | enchant2 \ | ||
10 | evolution-data-server \ | ||
11 | folks \ | ||
12 | gcr \ | ||
13 | gmime \ | ||
14 | gnome-online-accounts \ | ||
15 | gsound \ | ||
16 | gspell \ | ||
17 | gtk+3 \ | ||
18 | icu \ | ||
19 | iso-codes \ | ||
20 | json-glib \ | ||
21 | libhandy \ | ||
22 | libical \ | ||
23 | libpeas \ | ||
24 | libsecret \ | ||
25 | libstemmer \ | ||
26 | libxml2 \ | ||
27 | sqlite3 \ | ||
28 | webkitgtk \ | ||
29 | " | ||
30 | |||
31 | RDEPENDS:${PN} = "gnome-keyring" | ||
32 | |||
33 | inherit meson pkgconfig mime-xdg gtk-icon-cache gobject-introspection vala | ||
34 | |||
35 | SRC_URI = " \ | ||
36 | git://github.com/GNOME/geary.git;nobranch=1;protocol=https \ | ||
37 | " | ||
38 | |||
39 | S = "${WORKDIR}/git" | ||
40 | SRCREV = "gnome-${PV}" | ||
41 | |||
42 | REQUIRED_DISTRO_FEATURES = "gobject-introspection-data" | ||
43 | |||
44 | GIR_MESON_OPTION = "" | ||
45 | EXTRA_OEMESON = "-Dprofile=release" | ||
46 | |||
47 | PACKAGECONFIG[libunwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind" | ||
48 | PACKAGECONFIG[tnef] = "-Dtnef=enabled,-Dtnef=disabled,libytnef" | ||
49 | PACKAGECONFIG[valadoc] = "-Dvaladoc=enabled,-Dvaladoc=disabled" | ||
50 | |||
51 | PACKAGECONFIG ??= "" | ||
52 | |||
53 | FILES:${PN} += "${datadir}" | ||
54 | |||