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.

37 lines
878 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:=8.0.3
  7. PKG_RELEASE:=1
  8. PYPI_NAME:=click
  9. PKG_HASH:=410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b
  10. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_LICENSE_FILES:=LICENSE
  13. include ../pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-click
  17. SECTION:=lang
  18. CATEGORY:=Languages
  19. SUBMENU:=Python
  20. TITLE:=Click
  21. URL:=https://palletsprojects.com/p/click/
  22. DEPENDS:=+python3-light
  23. endef
  24. define Package/python3-click/description
  25. Composable command line interface toolkit
  26. endef
  27. $(eval $(call Py3Package,python3-click))
  28. $(eval $(call BuildPackage,python3-click))
  29. $(eval $(call BuildPackage,python3-click-src))