Makefile (1351B)
1 # 2 # Copyright (C) 2007-2017 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.20 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/20/56/a6aa403b0998f857b474a538343ee483f5c02491bd1aebf61d42a3f60f77/ 18 PKG_MD5SUM:=34691d4e7e20a8e9cdb452ea24fc38e7 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))