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.

40 lines
1003 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-firmware-tool
  6. PKG_VERSION:=1.5.1
  7. PKG_RELEASE:=2
  8. PYPI_NAME:=bcf
  9. PKG_HASH:=50b0351b97e6b1b1d4cb4703491daa6102e7e5b3b750b47fa35182d9eb39ab9c
  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-firmware-tool
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. SUBMENU:=BigClown
  20. TITLE:=BigCLown firmware tool
  21. URL:=https://github.com/bigclownlabs/bch-firmware-tool
  22. DEPENDS:= \
  23. +python3-appdirs \
  24. +python3-pyserial \
  25. +python3-colorama \
  26. +python3-yaml \
  27. +python3-schema \
  28. +python3-requests \
  29. +python3-click \
  30. +python3-intelhex
  31. endef
  32. $(eval $(call Py3Package,bigclown-firmware-tool))
  33. $(eval $(call BuildPackage,bigclown-firmware-tool))