diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /expat | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'expat')
-rw-r--r-- | expat/expat_1.95.6.oe | 25 | ||||
-rw-r--r-- | expat/expat_1.95.7.oe | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/expat/expat_1.95.6.oe b/expat/expat_1.95.6.oe index e69de29bb2..0309cd8db0 100644 --- a/expat/expat_1.95.6.oe +++ b/expat/expat_1.95.6.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "Jim Clarkes XML parser library." +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = ${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz +S = "${WORKDIR}/${P}" + +inherit autotools libtool +export LTCC=${CC} + +do_stage () { + install -m 0644 lib/expat.h ${STAGING_DIR}/target/include/ + install -m 0755 .libs/libexpat.so.0.4.0 ${STAGING_LIBDIR}/ + ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so.1 + ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so.0 + ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so +} + +do_install () { + oe_runmake prefix="${D}/${prefix}" \ + bindir="${D}/${bindir}" \ + libdir="${D}/${libdir}" \ + includedir="${D}/${includedir}" \ + install +} diff --git a/expat/expat_1.95.7.oe b/expat/expat_1.95.7.oe index e69de29bb2..9d18b707c1 100644 --- a/expat/expat_1.95.7.oe +++ b/expat/expat_1.95.7.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "Jim Clarkes XML parser library." +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = ${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz +S = "${WORKDIR}/${P}" + +inherit autotools libtool +export LTCC=${CC} + +do_stage () { + install -m 0644 lib/expat.h ${STAGING_DIR}/target/include/ + install -m 0755 .libs/libexpat.so.0.5.0 ${STAGING_LIBDIR}/ + ln -sf libexpat.so.0.5.0 ${STAGING_LIBDIR}/libexpat.so.1 + ln -sf libexpat.so.0.5.0 ${STAGING_LIBDIR}/libexpat.so.0 + ln -sf libexpat.so.0.5.0 ${STAGING_LIBDIR}/libexpat.so +} + +do_install () { + oe_runmake prefix="${D}/${prefix}" \ + bindir="${D}/${bindir}" \ + libdir="${D}/${libdir}" \ + includedir="${D}/${includedir}" \ + install +} |