Commit based upon d6442850bde61f0c3e7e2ae3247b4a856073c5e0
[librecmc/package-feed.git] / lang / python-urllib3 / Makefile
1 #
2 # Copyright (C) 2007-2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=python-urllib3
11 PKG_VERSION:=1.19
12 PKG_RELEASE:=1
13 PKG_LICENSE:=MIT
14
15 PKG_SOURCE:=urllib3-$(PKG_VERSION).tar.gz
16 PKG_BUILD_DIR:=$(BUILD_DIR)/urllib3-$(PKG_VERSION)/
17 PKG_SOURCE_URL:=https://pypi.python.org/packages/08/37/48b443a36af9eda6274f673b70a9140c13e2409edb2ef20b2d8a620efef5/
18 PKG_MD5SUM:=4aa7c6c310cd938683e9b1831e110bac
19 PKG_BUILD_DEPENDS:=python python-setuptools
20
21 include $(INCLUDE_DIR)/package.mk
22 $(call include_mk, python-package.mk)
23
24 define Package/python-urllib3
25   SUBMENU:=Python
26   SECTION:=lang
27   CATEGORY:=Languages
28   MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
29   TITLE:=HTTP library with thread-safe connection pooling, file post, and more.
30   URL:=https://urllib3.readthedocs.io/
31   DEPENDS:=+python
32 endef
33
34 define Package/python-urllib3/description
35   HTTP library with thread-safe connection pooling, file post, and more.
36 endef
37
38 define Build/Compile
39         $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
40 endef
41
42 define Package/python-urllib3/install
43         $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
44         $(CP) \
45             $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
46             $(1)$(PYTHON_PKG_DIR)
47 endef
48
49 $(eval $(call BuildPackage,python-urllib3))