summaryrefslogtreecommitdiffstats
path: root/meta/packages/zlib/zlib_1.2.3.bb
blob: 25677733f849e308df3e70bae27c00a2c785ecdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
DESCRIPTION = "Zlib Compression Library"
SECTION = "libs"
PRIORITY = "required"
HOMEPAGE = "http://www.gzip.org/zlib/"
LICENSE = "zlib"
PR = "r6"

SRC_URI = "http://www.zlib.net/zlib-1.2.3.tar.bz2 \
		file://1.2.3.3.dfsg.patch.gz;patch=1 \
		file://visibility.patch;patch=1 \
		file://autotools.patch;patch=1 "

S = "${WORKDIR}/zlib-${PV}"

DEPENDS = "libtool-cross"

inherit autotools

do_stage() {
	install -m 0644 zlib.h ${STAGING_INCDIR}/
	install -m 0644 zconf.h ${STAGING_INCDIR}/
	install -m 0644 zlibdefs.h ${STAGING_INCDIR}/
	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
}