blob: 20fec724cf9681044703c5ca6b4754df4e5d4573 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-texttable
4PKG_VERSION:=1.7.0
5PKG_RELEASE:=1
6
7PYPI_NAME:=texttable
8PKG_HASH:=2d2068fb55115807d3ac77a4ca68fa48803e84ebb0ee2340f858107a36522638
9
10PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11PKG_LICENSE:=MIT
12PKG_LICENSE_FILES:=LICENSE
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define 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
25endef
26
27define Package/python3-texttable/description
28 Module for creating simple ASCII tables
29endef
30
31$(eval $(call Py3Package,python3-texttable))
32$(eval $(call BuildPackage,python3-texttable))
33$(eval $(call BuildPackage,python3-texttable-src))