diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2026-06-14 02:04:01 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2026-06-14 02:04:01 -0300 |
| commit | 826be0e13142c0cdf650f73181d98da9c215ccfb (patch) | |
| tree | 924230605d652a37f9413d56bb5d56394819bfba | |
| parent | 5435c5637c53714ddf78549fbac4253e9613dc0c (diff) | |
| download | meta-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.bb | 18 |
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 @@ | |||
| 1 | SUMMARY = "single-file public domain (or MIT licensed) libraries for C/C++" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://stb.h;beginline=14418;endline=14433;md5=b10975d4c8155af1811ab611586f01d2" | ||
| 4 | |||
| 5 | PV = "0.0+git${SRCPV}" | ||
| 6 | |||
| 7 | SRCREV = "f67165c2bb2af3060ecae7d20d6f731173485ad0" | ||
| 8 | SRC_URI = "git://github.com/nothings/stb.git;protocol=https;branch=master" | ||
| 9 | |||
| 10 | do_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. | ||
| 18 | ALLOW_EMPTY:${PN} = "1" | ||
