b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | include $(TOPDIR)/rules.mk |
| 2 | |
| 3 | PKG_NAME:=python-texttable |
| 4 | PKG_VERSION:=1.7.0 |
| 5 | PKG_RELEASE:=1 |
| 6 | |
| 7 | PYPI_NAME:=texttable |
| 8 | PKG_HASH:=2d2068fb55115807d3ac77a4ca68fa48803e84ebb0ee2340f858107a36522638 |
| 9 | |
| 10 | PKG_MAINTAINER:=Javier Marcet <javier@marcet.info> |
| 11 | PKG_LICENSE:=MIT |
| 12 | PKG_LICENSE_FILES:=LICENSE |
| 13 | |
| 14 | include ../pypi.mk |
| 15 | include $(INCLUDE_DIR)/package.mk |
| 16 | include ../python3-package.mk |
| 17 | |
| 18 | define Package/python3-texttable |
| 19 | SECTION:=lang |
| 20 | CATEGORY:=Languages |
| 21 | SUBMENU:=Python |
| 22 | TITLE:=Module for creating simple ASCII tables |
| 23 | URL:=https://github.com/foutaise/texttable/ |
| 24 | DEPENDS:=+python3-light +python3-codecs |
| 25 | endef |
| 26 | |
| 27 | define Package/python3-texttable/description |
| 28 | Module for creating simple ASCII tables |
| 29 | endef |
| 30 | |
| 31 | $(eval $(call Py3Package,python3-texttable)) |
| 32 | $(eval $(call BuildPackage,python3-texttable)) |
| 33 | $(eval $(call BuildPackage,python3-texttable-src)) |