diff options
-rw-r--r-- | meta-oe/recipes-devtools/exprtk/exprtk_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/exprtk/exprtk_git.bb b/meta-oe/recipes-devtools/exprtk/exprtk_git.bb new file mode 100644 index 0000000000..6930f31e96 --- /dev/null +++ b/meta-oe/recipes-devtools/exprtk/exprtk_git.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Expression parser" | ||
2 | HOMEPAGE = "https://github.com/ArashPartow/exprtk" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
6 | SRCREV = "281c2ccc65b8f91c012ea3725ebcef406378a225" | ||
7 | |||
8 | SRC_URI = "git://github.com/ArashPartow/exprtk.git" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | # other packages commonly reference the file directly as "exprtk.hpp" | ||
13 | # create symlink to allow this usage | ||
14 | do_install() { | ||
15 | install -d ${D}/${includedir} | ||
16 | install -m 0644 ${S}/exprtk.hpp ${D}/${includedir}/exprtk.hpp | ||
17 | } | ||
18 | |||
19 | # exprtk is a header only C++ library, so the main package will be empty. | ||
20 | RDEPENDS_${PN}-dev = "" | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||