91 lines
3.4 KiB
BlitzBasic
91 lines
3.4 KiB
BlitzBasic
|
SUMMARY = "Open source MQTT implementation"
|
||
|
DESCRIPTION = "Mosquitto is an open source (Eclipse licensed) message broker \
|
||
|
that implements the MQ Telemetry Transport protocol version 3.1, 3.1.1 and \
|
||
|
5, providing both an MQTT broker and several command-line clients. MQTT \
|
||
|
provides a lightweight method of carrying out messaging using a \
|
||
|
publish/subscribe model. "
|
||
|
HOMEPAGE = "http://mosquitto.org/"
|
||
|
SECTION = "console/network"
|
||
|
LICENSE = "EPL-2.0 | EDL-1.0"
|
||
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ca9a8f366c6babf593e374d0d7d58749 \
|
||
|
file://edl-v10;md5=9f6accb1afcb570f8be65039e2fcd49e \
|
||
|
file://epl-v20;md5=2dd765ca47a05140be15ebafddbeadfe \
|
||
|
file://NOTICE.md;md5=a7a91b4754c6f7995020d1b49bc829c6 \
|
||
|
"
|
||
|
DEPENDS = "uthash cjson"
|
||
|
|
||
|
SRC_URI = "http://mosquitto.org/files/source/mosquitto-${PV}.tar.gz \
|
||
|
file://mosquitto.init \
|
||
|
file://1571.patch \
|
||
|
"
|
||
|
|
||
|
SRC_URI[sha256sum] = "d0dde8fdb12caf6e2426b4f28081919a2fce3448773bdb8af0d3cd5fe5776925"
|
||
|
|
||
|
inherit systemd update-rc.d useradd cmake pkgconfig
|
||
|
|
||
|
PACKAGECONFIG ??= "ssl dlt websockets \
|
||
|
${@bb.utils.filter('DISTRO_FEATURES','systemd', d)} \
|
||
|
"
|
||
|
|
||
|
PACKAGECONFIG[manpages] = "-DDOCUMENTATION=ON,-DDOCUMENTATION=OFF,libxslt-native docbook-xsl-stylesheets-native"
|
||
|
PACKAGECONFIG[dns-srv] = "-DWITH_SRV=ON,-DWITH_SRV=OFF,c-ares"
|
||
|
PACKAGECONFIG[ssl] = "-DWITH_TLS=ON -DWITH_TLS_PSK=ON -DWITH_EC=ON,-DWITH_TLS=OFF -DWITH_TLS_PSK=OFF -DWITH_EC=OFF,openssl"
|
||
|
PACKAGECONFIG[systemd] = "-DWITH_SYSTEMD=ON,-DWITH_SYSTEMD=OFF,systemd"
|
||
|
PACKAGECONFIG[websockets] = "-DWITH_WEBSOCKETS=ON,-DWITH_WEBSOCKETS=OFF,libwebsockets"
|
||
|
PACKAGECONFIG[dlt] = "-DWITH_DLT=ON,-DWITH_DLT=OFF,dlt-daemon"
|
||
|
|
||
|
EXTRA_OECMAKE = " \
|
||
|
-DWITH_BUNDLED_DEPS=OFF \
|
||
|
-DWITH_ADNS=ON \
|
||
|
"
|
||
|
|
||
|
do_install:append() {
|
||
|
install -d ${D}${systemd_unitdir}/system/
|
||
|
install -m 0644 ${S}/service/systemd/mosquitto.service.notify ${D}${systemd_unitdir}/system/mosquitto.service
|
||
|
|
||
|
install -d ${D}${sysconfdir}/init.d/
|
||
|
install -m 0755 ${WORKDIR}/mosquitto.init ${D}${sysconfdir}/init.d/mosquitto
|
||
|
sed -i -e 's,@SBINDIR@,${sbindir},g' \
|
||
|
-e 's,@BASE_SBINDIR@,${base_sbindir},g' \
|
||
|
-e 's,@LOCALSTATEDIR@,${localstatedir},g' \
|
||
|
-e 's,@SYSCONFDIR@,${sysconfdir},g' \
|
||
|
${D}${sysconfdir}/init.d/mosquitto
|
||
|
}
|
||
|
|
||
|
PACKAGES += "libmosquitto1 libmosquittopp1 ${PN}-clients"
|
||
|
|
||
|
PACKAGE_BEFORE_PN = "${PN}-examples"
|
||
|
|
||
|
FILES:${PN} = "${sbindir}/mosquitto \
|
||
|
${bindir}/mosquitto_passwd \
|
||
|
${bindir}/mosquitto_ctrl \
|
||
|
${libdir}/mosquitto_dynamic_security.so \
|
||
|
${sysconfdir}/mosquitto \
|
||
|
${sysconfdir}/init.d \
|
||
|
${systemd_unitdir}/system/mosquitto.service \
|
||
|
"
|
||
|
|
||
|
CONFFILES:${PN} += "${sysconfdir}/mosquitto/mosquitto.conf"
|
||
|
|
||
|
FILES:libmosquitto1 = "${libdir}/libmosquitto.so.*"
|
||
|
|
||
|
FILES:libmosquittopp1 = "${libdir}/libmosquittopp.so.*"
|
||
|
|
||
|
FILES:${PN}-clients = "${bindir}/mosquitto_pub \
|
||
|
${bindir}/mosquitto_sub \
|
||
|
${bindir}/mosquitto_rr \
|
||
|
"
|
||
|
|
||
|
FILES:${PN}-examples = "${sysconfdir}/mosquitto/*.example"
|
||
|
|
||
|
SYSTEMD_SERVICE:${PN} = "mosquitto.service"
|
||
|
|
||
|
INITSCRIPT_NAME = "mosquitto"
|
||
|
INITSCRIPT_PARAMS = "defaults 30"
|
||
|
|
||
|
USERADD_PACKAGES = "${PN}"
|
||
|
USERADD_PARAM:${PN} = "--system --no-create-home --shell /bin/false \
|
||
|
--user-group mosquitto"
|
||
|
|
||
|
BBCLASSEXTEND += "native nativesdk"
|