aboutsummaryrefslogtreecommitdiffstats
path: root/packages/zlib/zlib_1.2.3.bb
diff options
context:
space:
mode:
authorHenning Heinold <heinold@inf.fu-berlin.de>2008-09-23 20:08:00 +0000
committerHenning Heinold <heinold@inf.fu-berlin.de>2008-09-23 20:08:00 +0000
commit7a4ee2053a6d1b515a612c0c20d034311ed3a9ac (patch)
tree627b22cff0c935b94560dcdcee7e39bbde1ae406 /packages/zlib/zlib_1.2.3.bb
parent936787f3c4b1e8d62d524012b3590c054ed4e316 (diff)
downloadopenembedded-7a4ee2053a6d1b515a612c0c20d034311ed3a9ac.tar.gz
zlib: simplfy the recipes
* use autotools_stage_all * bump PR
Diffstat (limited to 'packages/zlib/zlib_1.2.3.bb')
-rw-r--r--packages/zlib/zlib_1.2.3.bb17
1 files changed, 3 insertions, 14 deletions
diff --git a/packages/zlib/zlib_1.2.3.bb b/packages/zlib/zlib_1.2.3.bb
index 1f96816ae8..d4efeb08c8 100644
--- a/packages/zlib/zlib_1.2.3.bb
+++ b/packages/zlib/zlib_1.2.3.bb
@@ -3,7 +3,7 @@ SECTION = "libs"
PRIORITY = "required"
HOMEPAGE = "http://www.gzip.org/zlib/"
LICENSE = "zlib"
-PR="r4"
+PR="r5"
SRC_URI = "http://www.zlib.net/zlib-1.2.3.tar.bz2 \
file://visibility.patch;patch=1 \
@@ -13,19 +13,8 @@ S = "${WORKDIR}/zlib-${PV}"
DEPENDS = "libtool-cross"
-inherit autotools pkgconfig
+inherit autotools
do_stage() {
- install -m 0644 zlib.h ${STAGING_INCDIR}/zlib.h
- install -m 0644 zconf.h ${STAGING_INCDIR}/zconf.h
- oe_libinstall -a -so libz ${STAGING_LIBDIR}
-}
-
-do_install() {
- install -d ${D}${prefix} ${D}${includedir} ${D}${libdir}
- oe_runmake "prefix=${D}${prefix}" \
- "exec_prefix=${D}${exec_prefix}" \
- "man3dir=${D}${mandir}/man3" \
- "includedir=${D}${includedir}" \
- "libdir=${D}${libdir}" install
+ autotools_stage_all
}