mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 00:00:55 +00:00
With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) Peter Liedholm
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=telldus-mqtt
|
|
PKG_VERSION:=0.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/PeterFromSweden/telldus-mqtt.git
|
|
PKG_SOURCE_VERSION:=ffcbadc3aa3e36a238e35319bab66819e93db347
|
|
PKG_MIRROR_HASH:=20aa0e2d59ac8f37cc805f3b1a02559c278a99a577567d978ece264bac6bae61
|
|
|
|
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.
|
|
Please see https://github.com/PeterFromSweden/telldus-mqtt/blob/master/Readme.md for more information.
|
|
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))
|