You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
955 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=bigclown-control-tool
  6. PKG_VERSION:=0.2.0
  7. PKG_RELEASE:=2
  8. PYPI_NAME:=bch
  9. PKG_HASH:=4cd73b92757fce7275a4744baed411c867af2e671c521b90d6690b2320851d58
  10. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  11. PKG_LICENSE:=MIT
  12. PKG_LICENSE_FILES:=LICENSE
  13. include ../../../lang/python/pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../../../lang/python/python3-package.mk
  16. define Package/bigclown-control-tool
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. SUBMENU:=BigClown
  20. TITLE:=BigCLown control tool
  21. URL:=https://github.com/bigclownlabs/bch-control-tool
  22. DEPENDS:=\
  23. +python3-click \
  24. +python3-click-log \
  25. +python3-paho-mqtt \
  26. +python3-pyserial \
  27. +python3-yaml \
  28. +python3-simplejson
  29. endef
  30. $(eval $(call Py3Package,bigclown-control-tool))
  31. $(eval $(call BuildPackage,bigclown-control-tool))