summaryrefslogtreecommitdiff
path: root/recipes-connectivity/lora/lora-network-server_2.0.9.bb
diff options
context:
space:
mode:
authorJason Reiss <jreiss@multitech.com>2017-12-08 15:23:50 -0600
committerJason Reiss <jreiss@multitech.com>2017-12-08 15:23:50 -0600
commitaf004a473ef4e4f18277e80246be84cdbbbee08b (patch)
tree8bd2437a2d5d496f066758b7d7b060c7e80c6a80 /recipes-connectivity/lora/lora-network-server_2.0.9.bb
parent19d40294b8dab445649115e7975950c640d6cd77 (diff)
downloadmeta-mlinux-af004a473ef4e4f18277e80246be84cdbbbee08b.tar.gz
meta-mlinux-af004a473ef4e4f18277e80246be84cdbbbee08b.tar.bz2
meta-mlinux-af004a473ef4e4f18277e80246be84cdbbbee08b.zip
lora: update network server to 2.0.9
Diffstat (limited to 'recipes-connectivity/lora/lora-network-server_2.0.9.bb')
-rw-r--r--recipes-connectivity/lora/lora-network-server_2.0.9.bb50
1 files changed, 50 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-network-server_2.0.9.bb b/recipes-connectivity/lora/lora-network-server_2.0.9.bb
new file mode 100644
index 0000000..e4be412
--- /dev/null
+++ b/recipes-connectivity/lora/lora-network-server_2.0.9.bb
@@ -0,0 +1,50 @@
+DESCRIPTION = "MultiTech LoRa Network Server"
+PRIORITY = "optional"
+SECTION = "console/utils"
+LICENSE = "Proprietary"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ae2ad602b723a163cd33ca5ee991fbcd"
+DEPENDS = "jsoncpp libmts mosquitto sqlite3"
+RDEPENDS_${PN} += "lora-packet-forwarder logrotate bash"
+PR = "r2"
+CONFFILES_${PN} += "${sysconfdir}/default/lora-network-server ${sysconfdir}/init.d/lora-network-server"
+
+SRC_URI = "http://multitech.net/downloads/lora-network-server_${TUNE_PKGARCH}_${PV}.tar.gz \
+ file://lora-network-server.init \
+ file://lora-network-server.default \
+ file://lora-network-server.logrotate.conf \
+ "
+
+SRC_URI[md5sum] = "3ea65afefc38fd9633caf850bebcc260"
+SRC_URI[sha256sum] = "3587d83b3d31126024af9fcede79b1b3efdeb333d6e39ad12e8b4ea02fc11196"
+
+# binaries are already stripped, so suppress warning
+INSANE_SKIP_${PN} = "already-stripped"
+
+S = "${WORKDIR}"
+
+LORA_DIR = "/opt/lora"
+
+do_compile() {
+}
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "lora-network-server"
+INITSCRIPT_PARAMS = "defaults 80 30"
+
+do_install() {
+ install -d ${D}${LORA_DIR}
+ install -m 0755 lora-network-server-mlinux-3 ${D}${LORA_DIR}/lora-network-server
+ install -m 0644 config/lora-network-server.conf.sample ${D}${LORA_DIR}/lora-network-server.conf.sample
+ install -m 0644 config/lora-network-server.conf.full ${D}${LORA_DIR}/lora-network-server.conf.full
+
+ install -d ${D}${sysconfdir}/default
+ install -m 0644 ${WORKDIR}/lora-network-server.default ${D}${sysconfdir}/default/lora-network-server
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0755 ${WORKDIR}/lora-network-server.init ${D}${sysconfdir}/init.d/lora-network-server
+ install -d ${D}${sysconfdir}/logrotate.d
+ install -m 0644 ${WORKDIR}/lora-network-server.logrotate.conf ${D}${sysconfdir}/logrotate.d/lora-network-server.conf
+}
+
+FILES_${PN} += "${LORA_DIR}"
+FILES_${PN}-dbg += "${LORA_DIR}/.debug"