From patchwork Wed Sep 14 15:00:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2] libroxml: Add version 2.1.0 Date: Wed, 14 Sep 2011 15:00:11 -0000 From: blunderer X-Patchwork-Id: 11377 Message-Id: <1316012411-28874-1-git-send-email-tristan.lelong@blunderer.org> To: openembedded-devel@lists.openembedded.org From: Tristan Lelong libroxml is a small fast and powerful xml library Signed-off-by: Tristan Lelong --- recipes/libroxml/libroxml.inc | 19 +++++++++++++++++++ recipes/libroxml/libroxml_2.1.0.bb | 6 ++++++ 2 files changed, 25 insertions(+), 0 deletions(-) create mode 100644 recipes/libroxml/libroxml.inc create mode 100644 recipes/libroxml/libroxml_2.1.0.bb diff --git a/recipes/libroxml/libroxml.inc b/recipes/libroxml/libroxml.inc new file mode 100644 index 0000000..06322fe --- /dev/null +++ b/recipes/libroxml/libroxml.inc @@ -0,0 +1,19 @@ +DESCRIPTION = "Small, fast and powerful xml library" +AUTHOR = "Tristan Lelong " +HOMEPAGE = "http://www.libroxml.net" +SECTION = "libs" +PRIORITY = "optional" +INC_PR = "r0" +LICENSE = "LGPL" + +SRC_URI = "http://libroxml.googlecode.com/files/libroxml-2.1.0.tar.gz" + +inherit pkgconfig + +do_install() { + oe_runmake install DESTDIR=${D} +} + +PACKAGES= ${PN} roxml +FILES_${PN} = ${libdir}/libroxml.so.0 +FILES_roxml = ${bindir}/roxml diff --git a/recipes/libroxml/libroxml_2.1.0.bb b/recipes/libroxml/libroxml_2.1.0.bb new file mode 100644 index 0000000..b3669e1 --- /dev/null +++ b/recipes/libroxml/libroxml_2.1.0.bb @@ -0,0 +1,6 @@ +PR = "${INC_PR}.0" + +SRC_URI[md5sum] = "ad1903efa241914baec2fd432a176549" +SRC_URI[sha256sum] = "bf2d908c330e28e5470fe9a841438b78025dc1406742fc54aad6fa8db401229a" + +require libroxml.inc