Files
openwrt-packages/lang/python/python-ble2mqtt/Makefile
Quintin Hill 123d1c4ea9 python-ble2mqtt: update to 0.1.9
Signed-off-by: Quintin Hill <stuff@quintin.me.uk>
(cherry picked from commit 0c93584975)
2023-08-31 16:09:35 +08:00

48 lines
1.3 KiB
Makefile

#
# Copyright (C) 2023
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-ble2mqtt
PKG_VERSION:=0.1.9
PKG_RELEASE:=1
PYPI_NAME:=ble2mqtt
PKG_HASH:=4b7c9ea747d04687a7e57d47a7d847870e4d9f474967906e9e1e06b7bce5a5b9
PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-ble2mqtt
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Bluetooth to MQTT bridge
URL:=https://github.com/devbis/ble2mqtt/
DEPENDS:=+python3-light +python3-aio-mqtt-mod +python3-asyncio +python3-bleak +python3-logging +python3-uuid
endef
define Package/python3-ble2mqtt/description
Bluetooth to MQTT bridge, add your bluetooth-capable (including controllable)
devices to your smart home
endef
define Py3Package/python3-ble2mqtt/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/ble2mqtt.init $(1)/etc/init.d/ble2mqtt
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
endef
$(eval $(call Py3Package,python3-ble2mqtt))
$(eval $(call BuildPackage,python3-ble2mqtt))
$(eval $(call BuildPackage,python3-ble2mqtt-src))