blob: 4bd60a2a6d23b6418725b1f9c96bfe55cc1fec71 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "A stream-oriented XML parser library"
2DESCRIPTION = "Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags)"
3HOMEPAGE = "http://expat.sourceforge.net/"
4SECTION = "libs"
5LICENSE = "MIT"
6
7SRC_URI = "${SOURCEFORGE_MIRROR}/expat/expat-${PV}.tar.gz \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008 file://autotools.patch \
9 file://expat-CVE-2015-1283.patch \
10 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
12inherit autotools lib_package gzipnative
13
14# This package uses an archive format known to have issue with some
15# versions of gzip
16do_unpack[depends] += "gzip-native:do_populate_sysroot"
17
18do_configure_prepend () {
19 rm -f ${S}/conftools/libtool.m4
20}
21
22BBCLASSEXTEND = "native nativesdk"