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
837 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-texttable
  3. PKG_VERSION:=1.6.4
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=texttable
  6. PKG_HASH:=42ee7b9e15f7b225747c3fa08f43c5d6c83bc899f80ff9bae9319334824076e9
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=MIT
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-texttable
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. SUBMENU:=Python
  17. TITLE:=Module for creating simple ASCII tables
  18. URL:=https://github.com/foutaise/texttable/
  19. DEPENDS:=+python3-light +python3-codecs
  20. endef
  21. define Package/python3-texttable/description
  22. Module for creating simple ASCII tables
  23. endef
  24. $(eval $(call Py3Package,python3-texttable))
  25. $(eval $(call BuildPackage,python3-texttable))
  26. $(eval $(call BuildPackage,python3-texttable-src))