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
commit5435c5637c53714ddf78549fbac4253e9613dc0c (patch)
tree3c38c00c0abeab4e4b527c559f86f9f16d2c27b5
parent2d7c72a4021f78edaac0dc082214fc7d01058fd3 (diff)
downloadmeta-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.bb19
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 @@
1SUMMARY = "C++ library for half precision floating point arithmetics"
2DESCRIPTION = "half is a C++ header-only library to provide an IEEE-754 conformant \
3half-precision floating point type along with corresponding arithmetic operators, \
4type conversions and common mathematical functions."
5
6LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=813a6278831975d26c115ed6f9c21831"
8
9SRC_URI = "https://sourceforge.net/projects/half/files/half/${PV}/${BP}.zip"
10SRC_URI[sha256sum] = "ad1788afe0300fa2b02b0d1df128d857f021f92ccf7c8bddd07812685fa07a25"
11
12S = "${UNPACKDIR}"
13
14do_install () {
15 install -d ${D}${includedir}
16 cp -r ${S}/include/* ${D}${includedir}
17}
18
19ALLOW_EMPTY:${PN} = "1"