summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-06-14 02:04:01 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2026-06-14 02:04:01 -0300
commit826be0e13142c0cdf650f73181d98da9c215ccfb (patch)
tree924230605d652a37f9413d56bb5d56394819bfba
parent5435c5637c53714ddf78549fbac4253e9613dc0c (diff)
downloadmeta-freescale-826be0e13142c0cdf650f73181d98da9c215ccfb.tar.gz
stb: import from meta-freescale-distro
Move the recipe into meta-freescale as part of consolidating all recipe content into a single layer. meta-freescale-distro is becoming a thin backward-compatibility layer that only keeps the distro definitions for the wrynose LTS lifetime and is no longer used for recipe development. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-devtools/stb/stb_git.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-devtools/stb/stb_git.bb b/recipes-devtools/stb/stb_git.bb
new file mode 100644
index 000000000..f5d52f809
--- /dev/null
+++ b/recipes-devtools/stb/stb_git.bb
@@ -0,0 +1,18 @@
1SUMMARY = "single-file public domain (or MIT licensed) libraries for C/C++"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://stb.h;beginline=14418;endline=14433;md5=b10975d4c8155af1811ab611586f01d2"
4
5PV = "0.0+git${SRCPV}"
6
7SRCREV = "f67165c2bb2af3060ecae7d20d6f731173485ad0"
8SRC_URI = "git://github.com/nothings/stb.git;protocol=https;branch=master"
9
10do_install() {
11 install -d ${D}${includedir}
12 for hdr in ${S}/*.h; do
13 install -m 0644 $hdr ${D}${includedir}
14 done
15}
16
17# This is a header-only library, so the main package will be empty.
18ALLOW_EMPTY:${PN} = "1"