udptunnel: new package
[feed/packages.git] / lang / python / Flask / Makefile
1 # This is free software, licensed under the GNU General Public License v2.
2 # See /LICENSE for more information.
3 #
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=Flask
8 PKG_VERSION:=1.0.2
9 PKG_RELEASE:=1
10
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12 PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/F/Flask
13 PKG_HASH:=2271c0070dbcb5275fad4a82e29f23ab92682dc45f9dfbc22c02ba9b9322ce48
14 PKG_BUILD_DEPENDS:=python python3
15 PKG_LICENSE:=BSD-3-Clause
16 PKG_LICENSE_FILES:=LICENSE
17 PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-$(PKG_NAME)-$(PKG_VERSION)
20 PKG_UNPACK=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
21
22 include $(INCLUDE_DIR)/package.mk
23 include ../python3-package.mk
24
25 define Package/python3-flask
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 URL:=http://github.com/pallets/flask/
30 TITLE:=python3-flask
31 DEPENDS:=+python3-asyncio +python3-click +python3-codecs +python3-decimal \
32 +python3-itsdangerous +python3-jinja2 +python3-light +python3-logging \
33 +python3-markupsafe +python3-multiprocessing +python3-werkzeug
34 VARIANT:=python3
35 endef
36
37 define Package/python3-flask/description
38 Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
39 intentions. And before you ask: It.s BSD licensed!
40 endef
41
42 $(eval $(call Py3Package,python3-flask))
43 $(eval $(call BuildPackage,python3-flask))