mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 22:37:56 +00:00
c64dc2163e
Every recipe should have a SUMMARY and that can only be 72 characters at most. Some of these recipes had DESCRIPTIONS and not SUMMARY, some were missing the SUMMARY, and some had slightly too long values for the SUMMARY. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
34 lines
930 B
BlitzBasic
34 lines
930 B
BlitzBasic
SUMMARY = "TI Unified Instrumentation Architecture in C (cUIA)"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://cuia_${CUIA_PV}_manifest.html;md5=0eea94e3bb94de4ddee77653eba1c7c5"
|
|
|
|
CUIA_PV = "1_00_00_13"
|
|
CUIA_PVExtra = ""
|
|
|
|
SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_ccstudio/UIA/SCMCSDK/cuia_${CUIA_PV}${CUIA_PVExtra}.tar.gz;name=cuia"
|
|
SRC_URI[cuia.md5sum] = "ef53989ac70c191841cd656cdc8770be"
|
|
SRC_URI[cuia.sha256sum] = "f16d138a9146fdc7d52cba77bd30596da65835f6ffe4092baf2b33d1c1a4fb0d"
|
|
|
|
S = "${WORKDIR}/cuia_${CUIA_PV}${CUIA_PVExtra}"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
do_compile () {
|
|
cd ${S}
|
|
oe_runmake clean
|
|
oe_runmake all
|
|
}
|
|
|
|
do_install() {
|
|
cd ${S}
|
|
oe_runmake DESTDIR=${D} libdir=${libdir} includedir=${includedir} install
|
|
rm -rf ${D}${libdir}/boot.*
|
|
rm -rf ${D}${libdir}/gnu.targets.*
|
|
rm -rf ${D}${libdir}/syscalls.*
|
|
}
|
|
|
|
COMPATIBLE_HOST ?= "null"
|
|
COMPATIBLE_HOST:ti-soc = "(.*)"
|
|
|
|
INSANE_SKIP:${PN} += "textrel"
|