diff options
| author | Alex Kiernan <alex.kiernan@gmail.com> | 2020-06-12 17:13:39 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-06-13 21:34:21 -0700 |
| commit | 2964b564f5e8eff7d8682b6190a84e3b12a7e750 (patch) | |
| tree | 7612ec8e1e594fb0d8ecef2cf22fa00eeb7f6d61 /meta-oe/recipes-gnome | |
| parent | 5fb2893684df6f005f8f5a98be74cfc424247343 (diff) | |
| download | meta-openembedded-2964b564f5e8eff7d8682b6190a84e3b12a7e750.tar.gz | |
libjcat: Add recipe
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-gnome')
| -rw-r--r-- | meta-oe/recipes-gnome/libjcat/libjcat/run-ptest | 3 | ||||
| -rw-r--r-- | meta-oe/recipes-gnome/libjcat/libjcat_0.1.2.bb | 34 |
2 files changed, 37 insertions, 0 deletions
diff --git a/meta-oe/recipes-gnome/libjcat/libjcat/run-ptest b/meta-oe/recipes-gnome/libjcat/libjcat/run-ptest new file mode 100644 index 0000000000..14980a7d06 --- /dev/null +++ b/meta-oe/recipes-gnome/libjcat/libjcat/run-ptest | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | |||
| 3 | gnome-desktop-testing-runner libjcat | ||
diff --git a/meta-oe/recipes-gnome/libjcat/libjcat_0.1.2.bb b/meta-oe/recipes-gnome/libjcat/libjcat_0.1.2.bb new file mode 100644 index 0000000000..10f5a800bd --- /dev/null +++ b/meta-oe/recipes-gnome/libjcat/libjcat_0.1.2.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "Library for reading and writing Jcat files" | ||
| 2 | LICENSE = "LGPLv2.1" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742" | ||
| 4 | |||
| 5 | DEPENDS = "\ | ||
| 6 | glib-2.0 \ | ||
| 7 | json-glib \ | ||
| 8 | " | ||
| 9 | |||
| 10 | SRC_URI = "\ | ||
| 11 | git://github.com/hughsie/libjcat.git \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | SRCREV = "1a509ac60b7446254c3bd1f45ea53e6cffba30ac" | ||
| 15 | S = "${WORKDIR}/git" | ||
| 16 | |||
| 17 | inherit gobject-introspection gtk-doc meson ptest-gnome vala | ||
| 18 | |||
| 19 | PACKAGECONFIG ??= "\ | ||
| 20 | gpg \ | ||
| 21 | pkcs7 \ | ||
| 22 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ | ||
| 23 | " | ||
| 24 | PACKAGECONFIG[gpg] = "-Dgpg=true,-Dgpg=false,gpgme" | ||
| 25 | PACKAGECONFIG[pkcs7] = "-Dpkcs7=true,-Dpkcs7=false,gnutls gnutls-native" | ||
| 26 | PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false" | ||
| 27 | |||
| 28 | # manpage generation is broken because help2man needs to run the target binary on the host... | ||
| 29 | EXTRA_OEMESON = "-Dman=false" | ||
| 30 | GTKDOC_MESON_OPTION = "gtkdoc" | ||
| 31 | |||
| 32 | RDEPENDS_${PN}_class-target = "\ | ||
| 33 | ${@bb.utils.contains('PACKAGECONFIG', 'gpg', 'gnupg', '', d)} \ | ||
| 34 | " | ||
