summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/half/half_2.1.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-devtools/half/half_2.1.0.bb')
-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"