Merge pull request #4605 from dibdot/travelmate
[feed/packages.git] / lang / python / Werkzeug / 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:=Werkzeug
8 PKG_VERSION:=0.12.2
9 PKG_RELEASE:=1
10
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12 PKG_SOURCE_URL:=https://pypi.python.org/packages/56/41/c095a77eb2dd69bf278dd664a97d3416af04e9ba1a00b8c138f772741d31/
13 PKG_MD5SUM:=e385b2c5a7193cff24c689b31e1124dc
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 $(call include_mk, python3-package.mk)
24
25 define Package/python3-werkzeug
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 URL:=http://werkzeug.pocoo.org/
30 TITLE:=python3-werkzeug
31 DEPENDS:=+python3-light +python3-email
32 VARIANT:=python3
33 endef
34
35 define Package/python3-werkzeug/description
36 Werkzeug
37
38 The Python WSGI Utility Library
39 endef
40
41 $(eval $(call Py3Package,python3-werkzeug))
42 $(eval $(call BuildPackage,python3-werkzeug))