blob: bd85be0a2254f45adc1bd5b38fe21a92b25a46a6 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-docutils
4PKG_VERSION:=0.20.1
5PKG_RELEASE:=1
6
7PYPI_NAME:=docutils
8PKG_HASH:=f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b
9
10PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
11PKG_LICENSE:=Public-Domain BSD-2-License Python-2.0.1 GPL-3.0-or-later
12PKG_LICENSE_FILES:=COPYING.txt licenses/BSD-2-Clause.txt licenses/python-2-1-1.txt licenses/gpl-3-0.txt
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define Package/python3-docutils
19 SUBMENU:=Python
20 SECTION:=lang
21 CATEGORY:=Languages
22 TITLE:=Documentation Utilities
23 URL:=https://docutils.sourceforge.io/
24 DEPENDS:=+python3
25endef
26
27define Package/python3-docutils/description
28Docutils is a modular system for processing documentation into useful
29formats, such as HTML, XML, and LaTeX. For input Docutils supports
30reStructuredText, an easy-to-read, what-you-see-is-what-you-get
31plaintext markup syntax.
32endef
33
34$(eval $(call Py3Package,python3-docutils))
35$(eval $(call BuildPackage,python3-docutils))
36$(eval $(call BuildPackage,python3-docutils-src))