summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/zlib/zlib_1.2.7.bb
diff options
context:
space:
mode:
authorEric Bénard <eric@eukrea.com>2012-05-08 19:30:43 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-09 21:42:52 +0100
commit3c97806c292b11879c1319e1baed70d917d3b49f (patch)
tree7aeccbdb9b54bec4849891ff37bc9264e2b8179f /meta/recipes-core/zlib/zlib_1.2.7.bb
parent3eff636ee86ce1f650625147d524b0c3429784e8 (diff)
downloadpoky-3c97806c292b11879c1319e1baed70d917d3b49f.tar.gz
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 (From OE-Core rev: 2f071e32128d8c022277c8af72dae47f60cf212b) Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/zlib/zlib_1.2.7.bb')
-rw-r--r--meta/recipes-core/zlib/zlib_1.2.7.bb27
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 @@
1SUMMARY = "Zlib Compression Library"
2DESCRIPTION = "Zlib is a general-purpose, patent-free, lossless data compression \
3library which is used by many different programs."
4HOMEPAGE = "http://zlib.net/"
5SECTION = "libs"
6LICENSE = "Zlib"
7LIC_FILES_CHKSUM = "file://zlib.h;beginline=4;endline=23;md5=94d1b5a40dadd127f3351471727e66a9"
8
9SRC_URI = "http://www.zlib.net/${BPN}-${PV}.tar.bz2 \
10 file://remove.ldconfig.call.patch \
11 "
12SRC_URI[md5sum] = "2ab442d169156f34c379c968f3f482dd"
13SRC_URI[sha256sum] = "49e2e9658dfb036900da6ea0267a737fa3c4eee6666776d378c79d52e9334934"
14
15do_configure (){
16 ./configure --prefix=${prefix} --shared --libdir=${libdir}
17}
18
19do_compile (){
20 oe_runmake
21}
22
23do_install() {
24 oe_runmake DESTDIR=${D} install
25}
26
27BBCLASSEXTEND = "native nativesdk"