blob: fe9d7e74f04a054486a61e67b5c9c1d0afffec00 [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
Patrick Williamsc0f7c042017-02-23 20:41:17 -06007SRC_URI = "${SOURCEFORGE_MIRROR}/expat/expat-${PV}.tar.bz2 \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008 file://autotools.patch \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
11inherit autotools lib_package gzipnative
12
13# This package uses an archive format known to have issue with some
14# versions of gzip
15do_unpack[depends] += "gzip-native:do_populate_sysroot"
16
17do_configure_prepend () {
18 rm -f ${S}/conftools/libtool.m4
19}
20
21BBCLASSEXTEND = "native nativesdk"