diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/lzo | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/lzo')
-rw-r--r-- | recipes/lzo/lzo-native_1.08.bb | 3 | ||||
-rw-r--r-- | recipes/lzo/lzo_1.08.bb | 36 |
2 files changed, 39 insertions, 0 deletions
diff --git a/recipes/lzo/lzo-native_1.08.bb b/recipes/lzo/lzo-native_1.08.bb new file mode 100644 index 0000000000..3de88e34bf --- /dev/null +++ b/recipes/lzo/lzo-native_1.08.bb @@ -0,0 +1,3 @@ +require lzo_${PV}.bb +inherit native +S = "${WORKDIR}/lzo-${PV}"
\ No newline at end of file diff --git a/recipes/lzo/lzo_1.08.bb b/recipes/lzo/lzo_1.08.bb new file mode 100644 index 0000000000..a01912da0f --- /dev/null +++ b/recipes/lzo/lzo_1.08.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "Lossless data compression library" +HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/" +LICENSE = "GPLv2" +SECTION = "libs" +PRIORITY = "optional" +PR = "r14" + +SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz" + +inherit autotools + +EXTRA_OECONF = "--enable-shared" + +#do_configure () { +# # override this function to avoid the autoconf/automake/aclocal/autoheader +# # calls for now +# gnu-configize +# oe_runconf +#} + +do_stage() { + install -m 0644 include/lzo1.h ${STAGING_INCDIR}/lzo1.h + install -m 0644 include/lzo16bit.h ${STAGING_INCDIR}/lzo16bit.h + install -m 0644 include/lzo1a.h ${STAGING_INCDIR}/lzo1a.h + install -m 0644 include/lzo1b.h ${STAGING_INCDIR}/lzo1b.h + install -m 0644 include/lzo1c.h ${STAGING_INCDIR}/lzo1c.h + install -m 0644 include/lzo1f.h ${STAGING_INCDIR}/lzo1f.h + install -m 0644 include/lzo1x.h ${STAGING_INCDIR}/lzo1x.h + install -m 0644 include/lzo1y.h ${STAGING_INCDIR}/lzo1y.h + install -m 0644 include/lzo1z.h ${STAGING_INCDIR}/lzo1z.h + install -m 0644 include/lzo2a.h ${STAGING_INCDIR}/lzo2a.h + install -m 0644 include/lzoconf.h ${STAGING_INCDIR}/lzoconf.h + install -m 0644 include/lzoutil.h ${STAGING_INCDIR}/lzoutil.h + + oe_libinstall -a -so -C src liblzo ${STAGING_LIBDIR} +} |