2024-01-29 00:23:40 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) Peter Liedholm
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=telldus-mqtt
|
2024-03-05 03:17:41 +08:00
|
|
|
PKG_VERSION:=0.3
|
2024-01-29 00:23:40 +08:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=https://github.com/PeterFromSweden/telldus-mqtt.git
|
2024-03-05 03:17:41 +08:00
|
|
|
PKG_SOURCE_VERSION:=ffcbadc3aa3e36a238e35319bab66819e93db347
|
2024-04-06 18:47:54 +08:00
|
|
|
PKG_MIRROR_HASH:=20aa0e2d59ac8f37cc805f3b1a02559c278a99a577567d978ece264bac6bae61
|
2024-01-29 00:23:40 +08:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Peter Liedholm <PeterFromSwe884@gmail.com>
|
|
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/telldus-mqtt
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=Telldus MQTT converter
|
|
|
|
DEPENDS:= +telldus-core +libmosquitto +cJSON
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/telldus-mqtt/description
|
|
|
|
MQTT protocol converter for Telldus USB-based 433 MHz RF transceiver for home automation.
|
2024-03-05 03:17:41 +08:00
|
|
|
Please see https://github.com/PeterFromSweden/telldus-mqtt/blob/master/Readme.md for more information.
|
2024-01-29 00:23:40 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/telldus-mqtt/conffiles
|
|
|
|
/etc/telldus-mqtt/telldus-mqtt.json
|
|
|
|
/etc/telldus-mqtt/telldus-mqtt-homeassistant.json
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/telldus-mqtt/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/telldus-mqtt $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/etc/telldus-mqtt/
|
|
|
|
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/usr/etc/telldus-mqtt/telldus-mqtt.json $(1)/etc/telldus-mqtt
|
|
|
|
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/usr/etc/telldus-mqtt/telldus-mqtt-homeassistant.json $(1)/etc/telldus-mqtt
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/telldus-mqtt $(1)/etc/init.d
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,telldus-mqtt))
|