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.

41 lines
1.2 KiB

  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:=Flask
  6. PKG_VERSION:=1.0.3
  7. PKG_RELEASE:=1
  8. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  9. PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/F/Flask
  10. PKG_HASH:=ad7c6d841e64296b962296c2c2dabc6543752985727af86a975072dea984b6f3
  11. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  12. PKG_LICENSE:=BSD-3-Clause
  13. PKG_LICENSE_FILES:=LICENSE
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-flask
  17. SECTION:=lang
  18. CATEGORY:=Languages
  19. SUBMENU:=Python
  20. TITLE:=python3-flask
  21. URL:=https://github.com/pallets/flask/
  22. DEPENDS:=+python3-asyncio +python3-click +python3-codecs +python3-decimal \
  23. +python3-itsdangerous +python3-jinja2 +python3 +python3-logging \
  24. +python3-markupsafe +python3-multiprocessing +python3-setuptools \
  25. +python3-werkzeug
  26. VARIANT:=python3
  27. endef
  28. define Package/python3-flask/description
  29. Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
  30. intentions. And before you ask: It.s BSD licensed!
  31. endef
  32. $(eval $(call Py3Package,python3-flask))
  33. $(eval $(call BuildPackage,python3-flask))