mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
Joshua Immanuel reported, and provided a patch to fix, that our custom autotooling for zlib does not install the pc file. Fixes [YOCTO #1983] Patch-from: Joshua Immanuel <josh@hipro.co.in> (From OE-Core rev: 37fbe2e1a706af634f400213b9fb4c6f0670c15e) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
828 B
BlitzBasic
28 lines
828 B
BlitzBasic
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=084e9c30e4e6272c3b057b13c6467f3d"
|
|
|
|
DEPENDS = "libtool-cross"
|
|
PR = "r2"
|
|
|
|
SRC_URI = "http://www.zlib.net/${BPN}-${PV}.tar.bz2 \
|
|
file://configure.ac \
|
|
file://Makefile.am \
|
|
file://fix.inverted.LFS.logic.patch"
|
|
|
|
SRC_URI[md5sum] = "be1e89810e66150f5b0327984d8625a0"
|
|
SRC_URI[sha256sum] = "239aead2f22f16bfcfa6a6a5150dcbd6d6f2e4d1eaa8727b5769ea014120b307"
|
|
|
|
inherit autotools
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/configure.ac ${S}/
|
|
cp ${WORKDIR}/Makefile.am ${S}/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|