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.

38 lines
906 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=click
  6. PKG_VERSION:=7.0
  7. PKG_RELEASE:=2
  8. PYPI_NAME:=$(PKG_NAME)
  9. PYPI_SOURCE_NAME:=Click
  10. PKG_HASH:=5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7
  11. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  12. PKG_LICENSE:=BSD-3-Clause
  13. PKG_LICENSE_FILES:=LICENSE
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-click
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. SUBMENU:=Python
  21. TITLE:=Click
  22. URL:=https://palletsprojects.com/p/click/
  23. DEPENDS:=+python3-light
  24. endef
  25. define Package/python3-click/description
  26. Composable command line interface toolkit
  27. endef
  28. $(eval $(call Py3Package,python3-click))
  29. $(eval $(call BuildPackage,python3-click))
  30. $(eval $(call BuildPackage,python3-click-src))