Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | SUMMARY = "Fast and portable XML parser and Jabber protocol library" |
| 2 | HOMEPAGE = "https://github.com/meduketto/iksemel" |
| 3 | SECTION = "libs" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 4 | LICENSE = "LGPL-2.1-only" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" |
| 6 | |
| 7 | SRCREV = "978b733462e41efd5db72bc9974cb3b0d1d5f6fa" |
| 8 | PV = "1.5+git${SRCPV}" |
| 9 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 10 | SRC_URI = "git://github.com/meduketto/iksemel.git;protocol=https;branch=master \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 11 | file://fix-configure-option-parsing.patch \ |
| 12 | file://avoid-obsolete-gnutls-apis.patch" |
| 13 | |
| 14 | S = "${WORKDIR}/git" |
| 15 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 16 | inherit autotools pkgconfig lib_package texinfo |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 17 | |
| 18 | # TLS support requires either openssl or gnutls (if both are enabled openssl will be used). |
| 19 | PACKAGECONFIG ?= "gnutls" |
| 20 | |
| 21 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls" |
| 22 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl" |
| 23 | |
| 24 | EXTRA_OECONF = "--disable-python" |