summaryrefslogtreecommitdiff
path: root/libxml/libxml2_2.6.7.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
committerChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
commit06f7d17e81de21a95e35b03453242bc62b05a6aa (patch)
treebc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /libxml/libxml2_2.6.7.oe
parent4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff)
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
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
+}