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.

36 lines
951 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=docutils
  3. PKG_VERSION:=0.14
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=51e64ef2ebfb29cae1faa133b3710143496eca21c530f3f71424d77687764274
  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-docutils
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=docutils
  17. URL:=http://docutils.sourceforge.net
  18. DEPENDS:=+python3
  19. endef
  20. define Package/python3-docutils/description
  21. Docutils is a modular system for processing documentation into useful formats,
  22. such as HTML, XML, and LaTeX. For input Docutils supports reStructuredText,
  23. an easy-to-read, what-you-see-is-what-you-get plaintext markup syntax.
  24. endef
  25. PYTHON3_PKG_SETUP_ARGS:=
  26. $(eval $(call Py3Package,python3-docutils))
  27. $(eval $(call BuildPackage,python3-docutils))
  28. $(eval $(call BuildPackage,python3-docutils-src))