- 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)
24 lines
779 B
BlitzBasic
24 lines
779 B
BlitzBasic
SUMMARY = "Lossless compression library and tool"
|
|
DESCRIPTION = "Brotli is a generic-purpose lossless compression algorithm \
|
|
that it is similar in speed to deflate but offers more dense compression."
|
|
HOMEPAGE = "https://github.com/google/brotli"
|
|
BUGTRACKER = "https://github.com/google/brotli/issues"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=941ee9cd1609382f946352712a319b4b"
|
|
|
|
SRC_URI = "git://github.com/google/brotli.git;branch=master;protocol=https"
|
|
SRCREV= "ed738e842d2fbdf2d6459e39267a633c4a9b2f5d"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake lib_package
|
|
|
|
do_install:append () {
|
|
for lib in $(ls ${D}${libdir}/*-static.a); do
|
|
basename=$(basename ${lib})
|
|
mv -v "${lib}" "${D}${libdir}/$(echo ${basename} | sed s/-static//)"
|
|
done
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|