diff options
author | Jason Reiss <jreiss@multitech.com> | 2017-08-02 10:41:37 -0500 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2017-08-02 10:41:37 -0500 |
commit | d9f96fd3b55ddb5ca53ff2a4050d99703c31a3f5 (patch) | |
tree | 1e2b86c112e0e7046718a61b58a4200c9d48c65d /recipes-connectivity/lora/lora-network-server_1.0.40.bb | |
parent | 68204f4b5aafab4f2e67a3f68f281fd8e618db32 (diff) | |
download | meta-mlinux-d9f96fd3b55ddb5ca53ff2a4050d99703c31a3f5.tar.gz meta-mlinux-d9f96fd3b55ddb5ca53ff2a4050d99703c31a3f5.tar.bz2 meta-mlinux-d9f96fd3b55ddb5ca53ff2a4050d99703c31a3f5.zip |
lora: update lns to 1.0.40
Diffstat (limited to 'recipes-connectivity/lora/lora-network-server_1.0.40.bb')
-rw-r--r-- | recipes-connectivity/lora/lora-network-server_1.0.40.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-network-server_1.0.40.bb b/recipes-connectivity/lora/lora-network-server_1.0.40.bb new file mode 100644 index 0000000..1ca9faa --- /dev/null +++ b/recipes-connectivity/lora/lora-network-server_1.0.40.bb @@ -0,0 +1,49 @@ +DESCRIPTION = "MultiTech LoRa Network Server" +PRIORITY = "optional" +SECTION = "console/utils" +LICENSE = "Proprietary" +LIC_FILES_CHKSUM = "file://LICENSE;md5=7ffae4666a986c4ccf45e99e464f8402" +DEPENDS = "jsoncpp libmts mosquitto sqlite3" +RDEPENDS_${PN} += "lora-packet-forwarder logrotate" +PR = "r1" + +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] = "9e22fa0ca9fd10028a4c3b06730b7252" +SRC_URI[sha256sum] = "94c1dbfeb04fdaa0fc33d4936492a7c986ed924fb5f9a3591365b6f7549a7c6a" + +# 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-4 ${D}${LORA_DIR}/lora-network-server + install -m 0644 lora-network-server.conf.sample ${D}${LORA_DIR}/lora-network-server.conf.sample + + 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 +} + +CONFFILES_${PN} = "${sysconfdir}/default/lora-network-server" +FILES_${PN} += "${LORA_DIR}" +FILES_${PN}-dbg += "${LORA_DIR}/.debug" |