summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Suesens <sebastian.suesens@gmail.com>2022-10-17 06:18:59 +0000
committerKhem Raj <raj.khem@gmail.com>2022-10-17 19:19:40 -0700
commit528d29b4a903a95d217f050b4c95006221b74bbe (patch)
treeaccec9846a4b4a3d06f36d94e6466714d0c2a6bb
parent0c1f379f424427d277b6c067dd0a05dff1868209 (diff)
downloadmeta-openembedded-528d29b4a903a95d217f050b4c95006221b74bbe.tar.gz
double-conversion: added double-conversion lib
This provides binary-decimal and decimal-binary routines for IEEE doubles. Signed-off-by: Sebastian Suesens <sebastian.suesens@baslerweb.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/dc/double-conversion_3.2.1.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/dc/double-conversion_3.2.1.bb b/meta-oe/recipes-support/dc/double-conversion_3.2.1.bb
new file mode 100644
index 0000000000..cc54dc6481
--- /dev/null
+++ b/meta-oe/recipes-support/dc/double-conversion_3.2.1.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Double conversion libraries"
2DESCRIPTION = "This provides binary-decimal and decimal-binary routines for IEEE doubles."
3HOMEPAGE = "https://github.com/google/double-conversion.git"
4
5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=1ea35644f0ec0d9767897115667e901f"
7
8
9S = "${WORKDIR}/git"
10
11SRC_URI = " \
12 git://github.com/google/double-conversion.git;protocol=https;branch=master \
13"
14SRCREV = "af09fd65fcf24eee95dc62813ba9123414635428"
15
16inherit cmake
17
18EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON"