diff options
Diffstat (limited to 'meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.21.bb')
| -rw-r--r-- | meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.21.bb | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.21.bb b/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.21.bb new file mode 100644 index 0000000000..86d26304ee --- /dev/null +++ b/meta-networking/recipes-connectivity/mosquitto/mosquitto_2.0.21.bb | |||
| @@ -0,0 +1,91 @@ | |||
| 1 | SUMMARY = "Open source MQTT implementation" | ||
| 2 | DESCRIPTION = "Mosquitto is an open source (Eclipse licensed) message broker \ | ||
| 3 | that implements the MQ Telemetry Transport protocol version 3.1, 3.1.1 and \ | ||
| 4 | 5, providing both an MQTT broker and several command-line clients. MQTT \ | ||
| 5 | provides a lightweight method of carrying out messaging using a \ | ||
| 6 | publish/subscribe model. " | ||
| 7 | HOMEPAGE = "http://mosquitto.org/" | ||
| 8 | SECTION = "console/network" | ||
| 9 | LICENSE = "EPL-2.0 | EDL-1.0" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ca9a8f366c6babf593e374d0d7d58749 \ | ||
| 11 | file://edl-v10;md5=9f6accb1afcb570f8be65039e2fcd49e \ | ||
| 12 | file://epl-v20;md5=2dd765ca47a05140be15ebafddbeadfe \ | ||
| 13 | file://NOTICE.md;md5=a7a91b4754c6f7995020d1b49bc829c6 \ | ||
| 14 | " | ||
| 15 | DEPENDS = "uthash cjson" | ||
| 16 | |||
| 17 | SRC_URI = "http://mosquitto.org/files/source/mosquitto-${PV}.tar.gz \ | ||
| 18 | file://mosquitto.init \ | ||
| 19 | file://2895.patch \ | ||
| 20 | file://3238.patch \ | ||
| 21 | " | ||
| 22 | |||
| 23 | SRC_URI[sha256sum] = "7ad5e84caeb8d2bb6ed0c04614b2a7042def961af82d87f688ba33db857b899d" | ||
| 24 | |||
| 25 | inherit systemd update-rc.d useradd cmake pkgconfig | ||
| 26 | |||
| 27 | PACKAGECONFIG ??= "ssl websockets \ | ||
| 28 | ${@bb.utils.filter('DISTRO_FEATURES','systemd', d)} \ | ||
| 29 | " | ||
| 30 | |||
| 31 | PACKAGECONFIG[manpages] = "-DDOCUMENTATION=ON,-DDOCUMENTATION=OFF,libxslt-native docbook-xsl-stylesheets-native" | ||
| 32 | PACKAGECONFIG[dns-srv] = "-DWITH_SRV=ON,-DWITH_SRV=OFF,c-ares" | ||
| 33 | PACKAGECONFIG[ssl] = "-DWITH_TLS=ON -DWITH_TLS_PSK=ON -DWITH_EC=ON,-DWITH_TLS=OFF -DWITH_TLS_PSK=OFF -DWITH_EC=OFF,openssl" | ||
| 34 | PACKAGECONFIG[systemd] = "-DWITH_SYSTEMD=ON,-DWITH_SYSTEMD=OFF,systemd" | ||
| 35 | PACKAGECONFIG[websockets] = "-DWITH_WEBSOCKETS=ON,-DWITH_WEBSOCKETS=OFF,libwebsockets" | ||
| 36 | PACKAGECONFIG[dlt] = "-DWITH_DLT=ON,-DWITH_DLT=OFF,dlt-daemon" | ||
| 37 | |||
| 38 | EXTRA_OECMAKE = " \ | ||
| 39 | -DWITH_BUNDLED_DEPS=OFF \ | ||
| 40 | -DWITH_ADNS=ON \ | ||
| 41 | " | ||
| 42 | |||
| 43 | do_install:append() { | ||
| 44 | install -d ${D}${systemd_unitdir}/system/ | ||
| 45 | install -m 0644 ${S}/service/systemd/mosquitto.service.notify ${D}${systemd_unitdir}/system/mosquitto.service | ||
| 46 | |||
| 47 | install -d ${D}${sysconfdir}/init.d/ | ||
| 48 | install -m 0755 ${WORKDIR}/mosquitto.init ${D}${sysconfdir}/init.d/mosquitto | ||
| 49 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 50 | -e 's,@BASE_SBINDIR@,${base_sbindir},g' \ | ||
| 51 | -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ | ||
| 52 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | ||
| 53 | ${D}${sysconfdir}/init.d/mosquitto | ||
| 54 | } | ||
| 55 | |||
| 56 | PACKAGES += "libmosquitto1 libmosquittopp1 ${PN}-clients" | ||
| 57 | |||
| 58 | PACKAGE_BEFORE_PN = "${PN}-examples" | ||
| 59 | |||
| 60 | FILES:${PN} = "${sbindir}/mosquitto \ | ||
| 61 | ${bindir}/mosquitto_passwd \ | ||
| 62 | ${bindir}/mosquitto_ctrl \ | ||
| 63 | ${libdir}/mosquitto_dynamic_security.so \ | ||
| 64 | ${sysconfdir}/mosquitto \ | ||
| 65 | ${sysconfdir}/init.d \ | ||
| 66 | ${systemd_unitdir}/system/mosquitto.service \ | ||
| 67 | " | ||
| 68 | |||
| 69 | CONFFILES:${PN} += "${sysconfdir}/mosquitto/mosquitto.conf" | ||
| 70 | |||
| 71 | FILES:libmosquitto1 = "${libdir}/libmosquitto.so.*" | ||
| 72 | |||
| 73 | FILES:libmosquittopp1 = "${libdir}/libmosquittopp.so.*" | ||
| 74 | |||
| 75 | FILES:${PN}-clients = "${bindir}/mosquitto_pub \ | ||
| 76 | ${bindir}/mosquitto_sub \ | ||
| 77 | ${bindir}/mosquitto_rr \ | ||
| 78 | " | ||
| 79 | |||
| 80 | FILES:${PN}-examples = "${sysconfdir}/mosquitto/*.example" | ||
| 81 | |||
| 82 | SYSTEMD_SERVICE:${PN} = "mosquitto.service" | ||
| 83 | |||
| 84 | INITSCRIPT_NAME = "mosquitto" | ||
| 85 | INITSCRIPT_PARAMS = "defaults 30" | ||
| 86 | |||
| 87 | USERADD_PACKAGES = "${PN}" | ||
| 88 | USERADD_PARAM:${PN} = "--system --no-create-home --shell /bin/false \ | ||
| 89 | --user-group mosquitto" | ||
| 90 | |||
| 91 | BBCLASSEXTEND = "native" | ||
