diff options
author | Eric Bénard <eric@eukrea.com> | 2012-05-08 19:30:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-09 21:41:32 +0100 |
commit | 2f071e32128d8c022277c8af72dae47f60cf212b (patch) | |
tree | d9b6cfd743dcb5c2bdc21e570bbd52f7183c87f2 /meta/recipes-core/zlib/zlib_1.2.7.bb | |
parent | 29afcb7ad976db62f9a46abf305a47a24a99dbda (diff) | |
download | openembedded-core-2f071e32128d8c022277c8af72dae47f60cf212b.tar.gz openembedded-core-2f071e32128d8c022277c8af72dae47f60cf212b.tar.bz2 openembedded-core-2f071e32128d8c022277c8af72dae47f60cf212b.zip |
zlib: upgrade to 1.2.7
1.2.6 is no more fetchable and 1.2.7 fix some bugs, full changelog is
available here : http://zlib.net/ChangeLog.txt
Signed-off-by: Eric Bénard <eric@eukrea.com>
Diffstat (limited to 'meta/recipes-core/zlib/zlib_1.2.7.bb')
-rw-r--r-- | meta/recipes-core/zlib/zlib_1.2.7.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-core/zlib/zlib_1.2.7.bb b/meta/recipes-core/zlib/zlib_1.2.7.bb new file mode 100644 index 0000000000..803fec35c4 --- /dev/null +++ b/meta/recipes-core/zlib/zlib_1.2.7.bb @@ -0,0 +1,27 @@ +SUMMARY = "Zlib Compression Library" +DESCRIPTION = "Zlib is a general-purpose, patent-free, lossless data compression \ +library which is used by many different programs." +HOMEPAGE = "http://zlib.net/" +SECTION = "libs" +LICENSE = "Zlib" +LIC_FILES_CHKSUM = "file://zlib.h;beginline=4;endline=23;md5=94d1b5a40dadd127f3351471727e66a9" + +SRC_URI = "http://www.zlib.net/${BPN}-${PV}.tar.bz2 \ + file://remove.ldconfig.call.patch \ + " +SRC_URI[md5sum] = "2ab442d169156f34c379c968f3f482dd" +SRC_URI[sha256sum] = "49e2e9658dfb036900da6ea0267a737fa3c4eee6666776d378c79d52e9334934" + +do_configure (){ + ./configure --prefix=${prefix} --shared --libdir=${libdir} +} + +do_compile (){ + oe_runmake +} + +do_install() { + oe_runmake DESTDIR=${D} install +} + +BBCLASSEXTEND = "native nativesdk" |