diff options
author | Jesse Gilles <jgilles@multitech.com> | 2015-05-22 14:47:15 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2015-05-22 14:47:15 -0500 |
commit | bfd5846c53d528c16a875f5b2469e1d29381763e (patch) | |
tree | 8182631bb580d0a05c05624b7e8a736f4ec983c6 /recipes-connectivity/lora/lora-query_0.0.1.bb | |
parent | 2fe4b3bfcaef7164f8890d4eec58450e7271b639 (diff) | |
download | meta-mlinux-atmel-bfd5846c53d528c16a875f5b2469e1d29381763e.tar.gz meta-mlinux-atmel-bfd5846c53d528c16a875f5b2469e1d29381763e.tar.bz2 meta-mlinux-atmel-bfd5846c53d528c16a875f5b2469e1d29381763e.zip |
add recipes for initial LoRa support for MTAC-LORA
Diffstat (limited to 'recipes-connectivity/lora/lora-query_0.0.1.bb')
-rw-r--r-- | recipes-connectivity/lora/lora-query_0.0.1.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-query_0.0.1.bb b/recipes-connectivity/lora/lora-query_0.0.1.bb new file mode 100644 index 0000000..d21d6e6 --- /dev/null +++ b/recipes-connectivity/lora/lora-query_0.0.1.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "LoRa network server query tool" +HOMEPAGE = "http://www.multitech.net/" +LICENSE = "GPL-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f" +DEPENDS = "jsoncpp libmts" +PR = "r0" + +SRCREV = "${PV}" + +SRC_URI = "git://git.multitech.net/lora-query;branch=master" + +S = "${WORKDIR}/git" + +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake install DESTDIR=${D} +} + |