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.

35 lines
832 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-docopt
  3. PKG_VERSION:=0.6.2
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=docopt
  6. PKG_HASH:=49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=MIT
  9. PKG_LICENSE_FILES:=LICENSE-MIT
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. PYTHON3_PKG_SETUP_ARGS:=
  14. define Package/python3-docopt
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. SUBMENU:=Python
  18. TITLE:=Pythonic argument parser, that will make you smile
  19. URL:=http://docopt.org/
  20. DEPENDS:=+python3-light
  21. endef
  22. define Package/python3-docopt/description
  23. Pythonic argument parser, that will make you smile
  24. endef
  25. $(eval $(call Py3Package,python3-docopt))
  26. $(eval $(call BuildPackage,python3-docopt))
  27. $(eval $(call BuildPackage,python3-docopt-src))