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.

33 lines
826 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=colorama
  3. PKG_VERSION:=0.4.1
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=05eed71e2e327246ad6b38c540c4a3117230b19679b875190486ddd2d721422d
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python3-package.mk
  12. define Package/python3-colorama
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=colorama
  17. URL:=https://github.com/tartley/colorama
  18. DEPENDS:=+python3
  19. endef
  20. define Package/python3-colorama/description
  21. Makes ANSI escape character sequences
  22. (for producing colored terminal text and cursor positioning) work under MS Windows.
  23. endef
  24. $(eval $(call Py3Package,python3-colorama))
  25. $(eval $(call BuildPackage,python3-colorama))
  26. $(eval $(call BuildPackage,python3-colorama-src))