diff options
Diffstat (limited to 'meta/recipes-support/libgpg-error/libgpg-error_1.56.bb')
| -rw-r--r-- | meta/recipes-support/libgpg-error/libgpg-error_1.56.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error_1.56.bb b/meta/recipes-support/libgpg-error/libgpg-error_1.56.bb new file mode 100644 index 0000000000..d3cc88f971 --- /dev/null +++ b/meta/recipes-support/libgpg-error/libgpg-error_1.56.bb | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | SUMMARY = "Small library that defines common error values for all GnuPG components" | ||
| 2 | DESCRIPTION = "Contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages. " | ||
| 3 | HOMEPAGE = "http://www.gnupg.org/related_software/libgpg-error/" | ||
| 4 | BUGTRACKER = "https://bugs.g10code.com/gnupg/index" | ||
| 5 | |||
| 6 | LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
| 8 | file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | ||
| 9 | file://src/gpg-error.h.in;beginline=2;endline=18;md5=badc79a9308e1cbd2657b2441c7cf017 \ | ||
| 10 | file://src/init.c;beginline=2;endline=17;md5=f01cdfcf747af5380590cfd9bbfeaaf7 \ | ||
| 11 | " | ||
| 12 | |||
| 13 | SECTION = "libs" | ||
| 14 | |||
| 15 | UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html" | ||
| 16 | SRC_URI = "${GNUPG_MIRROR}/libgpg-error/libgpg-error-${PV}.tar.bz2 \ | ||
| 17 | file://pkgconfig.patch \ | ||
| 18 | file://0001-Do-not-fail-when-testing-config-scripts.patch \ | ||
| 19 | file://run-ptest \ | ||
| 20 | " | ||
| 21 | |||
| 22 | SRC_URI[sha256sum] = "82c3d2deb4ad96ad3925d6f9f124fe7205716055ab50e291116ef27975d169c0" | ||
| 23 | |||
| 24 | BINCONFIG = "${bindir}/gpg-error-config" | ||
| 25 | |||
| 26 | inherit autotools binconfig-disabled pkgconfig gettext multilib_header multilib_script ptest | ||
| 27 | |||
| 28 | require recipes-support/gnupg/drop-unknown-suffix.inc | ||
| 29 | |||
| 30 | RDEPENDS:${PN}-ptest:append = " make bash" | ||
| 31 | |||
| 32 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/gpgrt-config" | ||
| 33 | |||
| 34 | CPPFLAGS += "-P" | ||
| 35 | |||
| 36 | do_install:append() { | ||
| 37 | # we don't have common lisp in OE | ||
| 38 | rm -rf "${D}${datadir}/common-lisp/" | ||
| 39 | oe_multilib_header gpg-error.h gpgrt.h | ||
| 40 | } | ||
| 41 | |||
| 42 | do_compile_ptest() { | ||
| 43 | oe_runmake -C tests buildtest-TESTS | ||
| 44 | } | ||
| 45 | |||
| 46 | do_install_ptest() { | ||
| 47 | install ${B}/tests/t-*[!\.o] ${D}${PTEST_PATH} | ||
| 48 | install ${B}/tests/Makefile ${D}${PTEST_PATH} | ||
| 49 | } | ||
| 50 | |||
| 51 | FILES:${PN}-dev += "${bindir}/gpg-error" | ||
| 52 | FILES:${PN}-doc += "${datadir}/libgpg-error/errorref.txt" | ||
| 53 | |||
| 54 | BBCLASSEXTEND = "native nativesdk" | ||
