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.

41 lines
1.0 KiB

  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:=python-intelhex
  6. PKG_VERSION:=2.2.1
  7. PKG_RELEASE:=3
  8. PYPI_NAME:=IntelHex
  9. PYPI_SOURCE_NAME:=intelhex
  10. PKG_HASH:=009d8511e0d50639230c39af9607deee771cf026f67ef7507a8c3fd4fa927832
  11. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  12. PKG_LICENSE:=BSD-3-Clause
  13. PKG_LICENSE_FILES:=LICENSE.txt
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-intelhex
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. SUBMENU:=Python
  21. TITLE:=python3-intelhex
  22. URL:=https://github.com/bialix/intelhex
  23. DEPENDS:=+python3-light
  24. endef
  25. define Package/python3-intelhex/description
  26. This work implements an intelhex Python library to read, write, create from
  27. scratch and manipulate data from Intel HEX file format.
  28. endef
  29. PYTHON3_PKG_SETUP_ARGS:=
  30. $(eval $(call Py3Package,python3-intelhex))
  31. $(eval $(call BuildPackage,python3-intelhex))
  32. $(eval $(call BuildPackage,python3-intelhex-src))