summaryrefslogtreecommitdiff
path: root/lzo
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 /lzo
parent4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff)
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'lzo')
-rw-r--r--lzo/lzo_1.08.oe35
1 files changed, 35 insertions, 0 deletions
diff --git a/lzo/lzo_1.08.oe b/lzo/lzo_1.08.oe
index e69de29bb2..c4464520fe 100644
--- a/lzo/lzo_1.08.oe
+++ b/lzo/lzo_1.08.oe
@@ -0,0 +1,35 @@
+DESCRIPTION = "Lossless data compression library"
+SECTION = "libs"
+PRIORITY = "optional"
+RDEPENDS = "libc6"
+DEPENDS = "virtual/libc"
+
+SRC_URI="http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz"
+
+inherit autotools libtool
+
+do_configure () {
+ # override this function to avoid the autoconf/automake/aclocal/autoheader
+ # calls for now
+ oe_runconf
+}
+
+do_stage() {
+ install -m 0644 include/lzo1.h ${STAGING_DIR}/target/include/lzo1.h
+ install -m 0644 include/lzo16bit.h ${STAGING_DIR}/target/include/lzo16bit.h
+ install -m 0644 include/lzo1a.h ${STAGING_DIR}/target/include/lzo1a.h
+ install -m 0644 include/lzo1b.h ${STAGING_DIR}/target/include/lzo1b.h
+ install -m 0644 include/lzo1c.h ${STAGING_DIR}/target/include/lzo1c.h
+ install -m 0644 include/lzo1f.h ${STAGING_DIR}/target/include/lzo1f.h
+ install -m 0644 include/lzo1x.h ${STAGING_DIR}/target/include/lzo1x.h
+ install -m 0644 include/lzo1y.h ${STAGING_DIR}/target/include/lzo1y.h
+ install -m 0644 include/lzo1z.h ${STAGING_DIR}/target/include/lzo1z.h
+ install -m 0644 include/lzo2a.h ${STAGING_DIR}/target/include/lzo2a.h
+ install -m 0644 include/lzoconf.h ${STAGING_DIR}/target/include/lzoconf.h
+ install -m 0644 include/lzoutil.h ${STAGING_DIR}/target/include/lzoutil.h
+
+ install -m 0755 src/.libs/liblzo.so.1.0.0 ${STAGING_LIBDIR}/liblszo.so.1.0.0
+ ln -sf liblzo.so.1.0.0 ${STAGING_LIBDIR}/liblzo.so.1
+ ln -sf liblzo.so.1.0.0 ${STAGING_LIBDIR}/liblzo.so
+ install -m 0644 src/.libs/liblzo.a ${STAGING_LIBDIR}/liblzo.a
+}