- 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)
39 lines
1.1 KiB
BlitzBasic
39 lines
1.1 KiB
BlitzBasic
SUMMARY = "Soft Parser Configuration tool"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=163b09a1c249a6ff2b28da1ceca2e0a8"
|
|
|
|
DEPENDS = "libxml2 fmlib tclap"
|
|
|
|
SRC_URI = "git://github.com/nxp-qoriq/spc;protocol=https;nobranch=1"
|
|
SRCREV = "b8d69580e5c6aeeb9f1354ee2faed6e0134eaef4"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = 'FMD_USPACE_HEADER_PATH="${STAGING_INCDIR}/fmd" \
|
|
FMD_USPACE_LIB_PATH="${STAGING_LIBDIR}" LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2" \
|
|
TCLAP_HEADER_PATH="${STAGING_INCDIR}" '
|
|
EXTRA_OEMAKE:class-native = 'FMCHOSTMODE=1 FMD_USPACE_HEADER_PATH="${STAGING_INCDIR}/fmd" \
|
|
FMD_USPACE_LIB_PATH="${STAGING_LIBDIR}" LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2" \
|
|
TCLAP_HEADER_PATH="${STAGING_INCDIR}" '
|
|
|
|
EXTRA_OEMAKE_PLATFORM ?= ""
|
|
|
|
do_compile () {
|
|
oe_runmake -C source
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}/${bindir}
|
|
install -m 755 ${S}/source/spc ${D}/${bindir}
|
|
|
|
install -d ${D}${sysconfdir}/spc/config
|
|
install -m 644 ${S}${sysconfdir}/spc/config/* ${D}${sysconfdir}/spc/config
|
|
|
|
}
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
PACKAGE_ARCH = "${MACHINE_SOCARCH}"
|
|
|
|
COMPATIBLE_MACHINE = "(qoriq-arm64)"
|