- 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)
72 lines
3.1 KiB
BlitzBasic
72 lines
3.1 KiB
BlitzBasic
SUMMARY = "PNG image format decoding library"
|
|
DESCRIPTION = "An open source project to develop and maintain the reference \
|
|
library for use in applications that read, create, and manipulate PNG \
|
|
(Portable Network Graphics) raster image files. "
|
|
HOMEPAGE = "http://www.libpng.org/"
|
|
SECTION = "libs"
|
|
LICENSE = "Libpng"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=0fdbfbe10fc294a6fca24dc76134222a"
|
|
DEPENDS = "zlib"
|
|
|
|
LIBV = "16"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/${PV}/${BP}.tar.xz \
|
|
file://run-ptest \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "c919dbc11f4c03b05aba3f8884d8eb7adfe3572ad228af972bb60057bdb48450"
|
|
|
|
MIRRORS += "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/older-releases/"
|
|
|
|
UPSTREAM_CHECK_URI = "http://libpng.org/pub/png/libpng.html"
|
|
|
|
BINCONFIG = "${bindir}/libpng-config ${bindir}/libpng16-config"
|
|
|
|
inherit autotools binconfig-disabled pkgconfig ptest
|
|
|
|
# Work around missing symbols
|
|
ARMNEON = "${@bb.utils.contains("TUNE_FEATURES", "neon", "--enable-arm-neon=on", "--enable-arm-neon=off", d)}"
|
|
ARMNEON:aarch64 = "--enable-hardware-optimizations=on"
|
|
EXTRA_OECONF += "${ARMNEON}"
|
|
|
|
PACKAGES =+ "${PN}-tools"
|
|
|
|
FILES:${PN}-tools = "${bindir}/png-fix-itxt ${bindir}/pngfix ${bindir}/pngcp"
|
|
|
|
RDEPENDS:${PN}-ptest += "make bash gawk"
|
|
|
|
do_install_ptest() {
|
|
# Install test scripts to ptest path
|
|
install -d ${D}${PTEST_PATH}/src/tests
|
|
install -m 755 ${S}/tests/* ${D}${PTEST_PATH}/src/tests
|
|
install -m 755 ${S}/test-driver ${D}${PTEST_PATH}/src
|
|
install -d ${D}${PTEST_PATH}/src/tests/scripts
|
|
install -m 755 ${S}/scripts/*.awk ${D}${PTEST_PATH}/src/tests/scripts
|
|
install -m 644 ${S}/scripts/pnglib* ${S}/scripts/*.c ${S}/scripts/*.def ${S}/scripts/macro.lst ${D}${PTEST_PATH}/src/tests/scripts
|
|
install -m 644 ${S}/scripts/pnglibconf.h.prebuilt ${D}${PTEST_PATH}/src/tests/scripts/pnglibconf.h
|
|
install -d ${D}${PTEST_PATH}/src/contrib/tools
|
|
install -m 755 ${S}/contrib/tools/*.sh ${D}${PTEST_PATH}/src/contrib/tools
|
|
install -m 644 ${S}/contrib/tools/*.c ${S}/contrib/tools/*.h ${D}${PTEST_PATH}/src/contrib/tools
|
|
|
|
# Install .libs directory binaries to ptest path
|
|
install -m 755 ${B}/.libs/pngtest ${B}/.libs/pngstest ${B}/.libs/pngimage ${B}/.libs/pngunknown ${B}/.libs/pngvalid ${D}${PTEST_PATH}/src
|
|
|
|
# Copy png files to ptest path
|
|
cd ${S} && find contrib -name '*.png' | cpio -pd ${D}${PTEST_PATH}/src
|
|
|
|
# Install Makefile and png files
|
|
install -m 644 ${S}/pngtest.png ${D}${PTEST_PATH}/src
|
|
install -m 644 ${S}/*.png ${S}/*.h ${S}/*.c ${S}/*.dfa ${B}/pnglibconf.out ${S}/Makefile.am ${S}/Makefile.in ${D}${PTEST_PATH}/src/tests
|
|
|
|
sed -e 's/^abs_srcdir = ..*/abs_srcdir = \.\./' \
|
|
-e 's/^top_srcdir = ..*/top_srcdir = \.\./' \
|
|
-e 's/^srcdir = ..*/srcdir = \./' \
|
|
-e 's/^Makefile: ..*/Makefile: /' \
|
|
-e 's/check-TESTS: $(check_PROGRAMS)/check-TESTS:/g' \
|
|
${B}/Makefile > ${D}${PTEST_PATH}/src/Makefile
|
|
|
|
sed -e 's|#!/bin/awk|#!/usr/bin/awk|g' -i ${D}${PTEST_PATH}/src/tests/scripts/*.awk
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|