diff options
| author | Richard Leitner <richard.leitner@skidata.com> | 2018-06-04 13:06:34 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-06-05 18:17:21 -0700 |
| commit | b1d047c35a7dafb0e206475be371596cc9368715 (patch) | |
| tree | 076fe161403a7f086e99e97af16e3ad4ef9b2193 /meta-oe/recipes-support/libmxml/libmxml_2.11.bb | |
| parent | 268b4bd1dc4286f5b79e2a2d39c7cfdb12220fff (diff) | |
| download | meta-openembedded-b1d047c35a7dafb0e206475be371596cc9368715.tar.gz | |
libmxml: add recipe
Add version 2.11 of libmxml with the debian patches and a
fix for libmxml.a installation applied.
Upstreaming of these patches was requested by following pull-request:
https://github.com/michaelrsweet/mxml/pull/223
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'meta-oe/recipes-support/libmxml/libmxml_2.11.bb')
| -rw-r--r-- | meta-oe/recipes-support/libmxml/libmxml_2.11.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libmxml/libmxml_2.11.bb b/meta-oe/recipes-support/libmxml/libmxml_2.11.bb new file mode 100644 index 0000000000..384e056d1d --- /dev/null +++ b/meta-oe/recipes-support/libmxml/libmxml_2.11.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | DESCRIPTION = "Tiny XML Library" | ||
| 2 | LICENSE = "Mini-XML-License" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6ba38606d63bb042c5d8cfee182e120" | ||
| 4 | HOMEPAGE = "https://www.msweet.org/mxml/" | ||
| 5 | BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues" | ||
| 6 | |||
| 7 | SRC_URI = " \ | ||
| 8 | https://github.com/michaelrsweet/mxml/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz \ | ||
| 9 | file://0001-remove-rpath-from-configure.in-and-configure.patch \ | ||
| 10 | file://0002-link-libmxml-with-pthread.patch \ | ||
| 11 | file://0003-add-missing-LDFLAGS-to-Makefile.patch \ | ||
| 12 | file://0004-mxml-string-compile-headers.patch \ | ||
| 13 | file://0005-several-autoheader-define-fixes.patch \ | ||
| 14 | file://0006-several-compile-fixes.patch \ | ||
| 15 | file://0007-Makefile-require-libmxml.a-for-its-installation.patch \ | ||
| 16 | " | ||
| 17 | |||
| 18 | SRC_URI[md5sum] = "b9b49af414a2f0a8b13636d9635c3b6a" | ||
| 19 | SRC_URI[sha256sum] = "7d3dfe661e50908fe41aef9b97ba6f7f158cab5208515c6be9f5bc9daf032329" | ||
| 20 | |||
| 21 | inherit autotools-brokensep gettext | ||
| 22 | |||
| 23 | S = "${WORKDIR}/mxml-${PV}" | ||
| 24 | |||
| 25 | EXTRA_OEMAKE = "DSTROOT=${D}" | ||
| 26 | |||
| 27 | PACKAGES += " ${PN}-bin " | ||
| 28 | FILES_${PN} = "${libdir}/*" | ||
| 29 | FILES_${PN}-bin = "${bindir}/*" | ||
