Files
tqma6-yocto-mirror/sources/meta-openembedded/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

30 lines
970 B
BlitzBasic

SUMMARY = "pngcheck verifies the integrity of PNG, JNG and MNG files"
HOMEPAGE = "http://www.libpng.org/pub/png/apps/pngcheck.html"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://gpl/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "zlib libpng"
SRC_URI = "${SOURCEFORGE_MIRROR}/project/png-mng/${BPN}/${PV}/${BPN}-${PV}.tar.gz \
file://10-pngsplit-format-strings.patch \
file://0001-png-fix-IDAT-windowsize-Fix-format-string-errors-in-.patch \
file://0001-make-Respect-variables-from-environement.patch \
"
SRC_URI[md5sum] = "980bd6d9a3830fdce746d7fe3c9166ee"
SRC_URI[sha256sum] = "77f0a039ac64df55fbd06af6f872fdbad4f639d009bbb5cd5cbe4db25690f35f"
CFLAGS += "-DUSE_ZLIB"
EXTRA_OEMAKE = "-f ${S}/Makefile.unx"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${bindir}
install pngcheck ${D}${bindir}
install png-fix-IDAT-windowsize ${D}${bindir}
install pngsplit ${D}${bindir}
}