blob: 6dfafe94d2a7b9a18376e37a04c94ab1bb5534e7 [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 \
8 file://autotools.patch"
9
10inherit autotools lib_package gzipnative
11
12# This package uses an archive format known to have issue with some
13# versions of gzip
14do_unpack[depends] += "gzip-native:do_populate_sysroot"
15
16do_configure_prepend () {
17 rm -f ${S}/conftools/libtool.m4
18}
19
20BBCLASSEXTEND = "native nativesdk"