summaryrefslogtreecommitdiff
path: root/libxml/libxml2_2.6.7.oe
diff options
context:
space:
mode:
Diffstat (limited to 'libxml/libxml2_2.6.7.oe')
-rw-r--r--libxml/libxml2_2.6.7.oe25
1 files changed, 25 insertions, 0 deletions
diff --git a/libxml/libxml2_2.6.7.oe b/libxml/libxml2_2.6.7.oe
index e69de29bb2..416f36a4bc 100644
--- a/libxml/libxml2_2.6.7.oe
+++ b/libxml/libxml2_2.6.7.oe
@@ -0,0 +1,25 @@
+DESCRIPTION = "GNOME XML library"
+SECTION = "libs"
+PRIORITY = "optional"
+DEPENDS = "virtual/libc"
+MAINTAINER = "Phil Blundell <pb@handhelds.org>"
+
+SRC_URI = ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/libxml2-2.6.7.tar.bz2
+
+inherit autotools pkgconfig libtool
+
+libname = "libxml2.so.2.6.7"
+
+headers = "DOCBparser.h HTMLparser.h HTMLtree.h SAX.h SAX2.h c14n.h catalog.h chvalid.h debugXML.h dict.h encoding.h entities.h globals.h hash.h list.h nanoftp.h nanohttp.h parser.h parserInternals.h pattern.h relaxng.h schemasInternals.h threads.h tree.h uri.h valid.h xinclude.h xlink.h xmlIO.h xmlautomata.h xmlerror.h xmlexports.h xmlmemory.h xmlreader.h xmlregexp.h xmlschemas.h xmlschemastypes.h xmlstring.h xmlunicode.h xmlversion.h xmlwriter.h xpath.h xpathInternals.h xpointer.h"
+
+do_stage () {
+ install -m 0755 .libs/${libname} ${STAGING_LIBDIR}/
+ ln -sf ${libname} ${STAGING_LIBDIR}/libxml2.so.2
+ ln -sf ${libname} ${STAGING_LIBDIR}/libxml2.so
+ install -m 0644 .libs/libxml2.lai ${STAGING_LIBDIR}/libxml2.la
+
+ mkdir -p ${STAGING_INCDIR}/libxml2/libxml
+ for i in ${headers}; do
+ install -m 0644 include/libxml/$i ${STAGING_INCDIR}/libxml2/libxml/$i
+ done
+}