Makefile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-urllib3
  9. PKG_VERSION:=1.19
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=MIT
  12. PKG_SOURCE:=urllib3-$(PKG_VERSION).tar.gz
  13. PKG_BUILD_DIR:=$(BUILD_DIR)/urllib3-$(PKG_VERSION)/
  14. PKG_SOURCE_URL:=https://pypi.python.org/packages/08/37/48b443a36af9eda6274f673b70a9140c13e2409edb2ef20b2d8a620efef5/
  15. PKG_MD5SUM:=4aa7c6c310cd938683e9b1831e110bac
  16. PKG_BUILD_DEPENDS:=python python-setuptools
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/python-urllib3
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
  24. TITLE:=HTTP library with thread-safe connection pooling, file post, and more.
  25. URL:=https://urllib3.readthedocs.io/
  26. DEPENDS:=+python
  27. endef
  28. define Package/python-urllib3/description
  29. HTTP library with thread-safe connection pooling, file post, and more.
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  33. endef
  34. define Package/python-urllib3/install
  35. $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
  36. $(CP) \
  37. $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
  38. $(1)$(PYTHON_PKG_DIR)
  39. endef
  40. $(eval $(call BuildPackage,python-urllib3))