iksemel_1.5.bb 839 B

123456789101112131415161718192021222324
  1. SUMMARY = "Fast and portable XML parser and Jabber protocol library"
  2. HOMEPAGE = "https://github.com/meduketto/iksemel"
  3. SECTION = "libs"
  4. LICENSE = "LGPLv2.1"
  5. LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499"
  6. SRCREV = "978b733462e41efd5db72bc9974cb3b0d1d5f6fa"
  7. PV = "1.5+git${SRCPV}"
  8. SRC_URI = "git://github.com/meduketto/iksemel.git;protocol=https \
  9. file://fix-configure-option-parsing.patch \
  10. file://avoid-obsolete-gnutls-apis.patch"
  11. S = "${WORKDIR}/git"
  12. inherit autotools pkgconfig lib_package texinfo
  13. # TLS support requires either openssl or gnutls (if both are enabled openssl will be used).
  14. PACKAGECONFIG ?= "gnutls"
  15. PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls"
  16. PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
  17. EXTRA_OECONF = "--disable-python"