diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 16:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 16:45:47 +0000 |
commit | 450aea724eac30317c0e8d77c7fc69e47f02ad7c (patch) | |
tree | b0f980a60f5f9f3ebac92bb18a4ad2c72f00d24b /meta/packages/lzo | |
parent | 2a9503f1858fa1bc5539297014a953ce5f6e67ce (diff) | |
download | poky-450aea724eac30317c0e8d77c7fc69e47f02ad7c.tar.gz |
Add lzo, upgrade libgcrypt -> 1.2.3, add gnutls 1.4.4
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@934 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/lzo')
-rw-r--r-- | meta/packages/lzo/lzo_1.08.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/packages/lzo/lzo_1.08.bb b/meta/packages/lzo/lzo_1.08.bb new file mode 100644 index 0000000000..c9a8a1384e --- /dev/null +++ b/meta/packages/lzo/lzo_1.08.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "Lossless data compression library" | ||
2 | HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/" | ||
3 | LICENSE = "GPLv2" | ||
4 | SECTION = "libs" | ||
5 | PRIORITY = "optional" | ||
6 | PR = "r14" | ||
7 | |||
8 | SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | EXTRA_OECONF = "--enable-shared" | ||
13 | |||
14 | #do_configure () { | ||
15 | # # override this function to avoid the autoconf/automake/aclocal/autoheader | ||
16 | # # calls for now | ||
17 | # gnu-configize | ||
18 | # oe_runconf | ||
19 | #} | ||
20 | |||
21 | do_stage() { | ||
22 | install -m 0644 include/lzo1.h ${STAGING_INCDIR}/lzo1.h | ||
23 | install -m 0644 include/lzo16bit.h ${STAGING_INCDIR}/lzo16bit.h | ||
24 | install -m 0644 include/lzo1a.h ${STAGING_INCDIR}/lzo1a.h | ||
25 | install -m 0644 include/lzo1b.h ${STAGING_INCDIR}/lzo1b.h | ||
26 | install -m 0644 include/lzo1c.h ${STAGING_INCDIR}/lzo1c.h | ||
27 | install -m 0644 include/lzo1f.h ${STAGING_INCDIR}/lzo1f.h | ||
28 | install -m 0644 include/lzo1x.h ${STAGING_INCDIR}/lzo1x.h | ||
29 | install -m 0644 include/lzo1y.h ${STAGING_INCDIR}/lzo1y.h | ||
30 | install -m 0644 include/lzo1z.h ${STAGING_INCDIR}/lzo1z.h | ||
31 | install -m 0644 include/lzo2a.h ${STAGING_INCDIR}/lzo2a.h | ||
32 | install -m 0644 include/lzoconf.h ${STAGING_INCDIR}/lzoconf.h | ||
33 | install -m 0644 include/lzoutil.h ${STAGING_INCDIR}/lzoutil.h | ||
34 | |||
35 | oe_libinstall -a -so -C src liblzo ${STAGING_LIBDIR} | ||
36 | } | ||