xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/iksemel/iksemel_1.5.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunSUMMARY = "Fast and portable XML parser and Jabber protocol library"
2*4882a593SmuzhiyunHOMEPAGE = "https://github.com/meduketto/iksemel"
3*4882a593SmuzhiyunSECTION = "libs"
4*4882a593SmuzhiyunLICENSE = "LGPL-2.1-only"
5*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499"
6*4882a593Smuzhiyun
7*4882a593SmuzhiyunSRCREV = "978b733462e41efd5db72bc9974cb3b0d1d5f6fa"
8*4882a593SmuzhiyunPV = "1.5+git${SRCPV}"
9*4882a593Smuzhiyun
10*4882a593SmuzhiyunSRC_URI = "git://github.com/meduketto/iksemel.git;protocol=https;branch=master \
11*4882a593Smuzhiyun           file://fix-configure-option-parsing.patch \
12*4882a593Smuzhiyun           file://avoid-obsolete-gnutls-apis.patch"
13*4882a593Smuzhiyun
14*4882a593SmuzhiyunS = "${WORKDIR}/git"
15*4882a593Smuzhiyun
16*4882a593Smuzhiyuninherit autotools pkgconfig lib_package texinfo
17*4882a593Smuzhiyun
18*4882a593Smuzhiyun# TLS support requires either openssl or gnutls (if both are enabled openssl will be used).
19*4882a593SmuzhiyunPACKAGECONFIG ?= "gnutls"
20*4882a593Smuzhiyun
21*4882a593SmuzhiyunPACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls"
22*4882a593SmuzhiyunPACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
23*4882a593Smuzhiyun
24*4882a593SmuzhiyunEXTRA_OECONF = "--disable-python"
25