- 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)
23 lines
1.0 KiB
BlitzBasic
23 lines
1.0 KiB
BlitzBasic
SUMMARY = "Common files and packaging infrastructure for CT-API modules"
|
|
HOMEPAGE = "http://fedoraproject.org/"
|
|
SECTION = "System Environment/Libraries"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://../ctapi-common.LICENSE;md5=8744cd52545ecb45befebd0da6f70f0a"
|
|
|
|
SRC_URI = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.LICENSE \
|
|
https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/23/Everything/source/SRPMS/c/${BPN}-${PV}.fc23.src.rpm;extract=ctapi-common.README"
|
|
SRC_URI[sha256sum] = "87a74eb0a66055c34ba2c5c919e74f3211c5950ae1c2cbab967fdf4137f5de91"
|
|
|
|
do_compile() {
|
|
install -pm 644 ${WORKDIR}/ctapi-common.LICENSE LICENSE
|
|
install -pm 644 ${WORKDIR}/ctapi-common.README README
|
|
echo ${libdir}/ctapi > ctapi.conf
|
|
}
|
|
|
|
do_install() {
|
|
install -Dpm 644 ctapi.conf ${D}${sysconfdir}/ld.so.conf.d/ctapi-${TARGET_ARCH}.conf
|
|
install -dm 755 ${D}${libdir}/ctapi
|
|
}
|
|
|
|
FILES:${PN} += "${libdir}/ctapi"
|