- 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)
33 lines
944 B
BlitzBasic
33 lines
944 B
BlitzBasic
SUMMARY = "Low-Level Interface to lzma compresion library."
|
|
DESCRIPTION = "This module provides a Perl interface to allow reading and \
|
|
wrting of lzma, lzip and xz files/buffers."
|
|
HOMEPAGE = "https://metacpan.org/release/Compress-Raw-Lzma"
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://README;beginline=8;endline=10;md5=b95311d4a7dbf3d0d3663edc094aced6"
|
|
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/P/PM/PMQS/Compress-Raw-Lzma-${PV}.tar.gz"
|
|
|
|
SRC_URI[sha256sum] = "e01a7040b84bdc67592d13eec0c788590e1f696d1d4f07c7097bd72a4f886eb4"
|
|
|
|
DEPENDS += "xz"
|
|
|
|
S = "${WORKDIR}/Compress-Raw-Lzma-${PV}"
|
|
|
|
inherit cpan
|
|
|
|
RDEPENDS:${PN} += "\
|
|
perl-module-universal \
|
|
"
|
|
|
|
export LIBLZMA_INCLUDE="-I${STAGING_DIR_HOST}${includedir}"
|
|
export LIBLZMA_LIB="-I${STAGING_DIR_HOST}${libdir}"
|
|
|
|
do_compile() {
|
|
export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')"
|
|
cpan_do_compile
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|