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 | 5435c5637c53714ddf78549fbac4253e9613dc0c (patch) | |
| tree | 3c38c00c0abeab4e4b527c559f86f9f16d2c27b5 | |
| parent | 2d7c72a4021f78edaac0dc082214fc7d01058fd3 (diff) | |
| download | meta-freescale-5435c5637c53714ddf78549fbac4253e9613dc0c.tar.gz | |
half: 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/half/half_2.1.0.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-devtools/half/half_2.1.0.bb b/recipes-devtools/half/half_2.1.0.bb new file mode 100644 index 000000000..4914f8701 --- /dev/null +++ b/recipes-devtools/half/half_2.1.0.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "C++ library for half precision floating point arithmetics" | ||
| 2 | DESCRIPTION = "half is a C++ header-only library to provide an IEEE-754 conformant \ | ||
| 3 | half-precision floating point type along with corresponding arithmetic operators, \ | ||
| 4 | type conversions and common mathematical functions." | ||
| 5 | |||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=813a6278831975d26c115ed6f9c21831" | ||
| 8 | |||
| 9 | SRC_URI = "https://sourceforge.net/projects/half/files/half/${PV}/${BP}.zip" | ||
| 10 | SRC_URI[sha256sum] = "ad1788afe0300fa2b02b0d1df128d857f021f92ccf7c8bddd07812685fa07a25" | ||
| 11 | |||
| 12 | S = "${UNPACKDIR}" | ||
| 13 | |||
| 14 | do_install () { | ||
| 15 | install -d ${D}${includedir} | ||
| 16 | cp -r ${S}/include/* ${D}${includedir} | ||
| 17 | } | ||
| 18 | |||
| 19 | ALLOW_EMPTY:${PN} = "1" | ||
