You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2015-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:=pyOpenSSL
  9. PKG_VERSION:=16.1.0
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/15/1e/79c75db50e57350a7cefb70b110255757e9abd380a50ebdc0cfd853b7450
  13. PKG_MD5SUM:=d8100b0c333f0eeadaf05914da8792a6
  14. PKG_BUILD_DEPENDS:=python python-setuptools
  15. PKG_LICENSE:=Apache-2.0
  16. PKG_LICENSE_FILES:=LICENSE
  17. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  18. include $(INCLUDE_DIR)/package.mk
  19. $(call include_mk, python-package.mk)
  20. define Package/python-pyopenssl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. SUBMENU:=Python
  24. TITLE:=python-pyopenssl
  25. URL:=https://github.com/pyca/pyopenssl
  26. DEPENDS:=+python-light +python-cryptography +python-six
  27. endef
  28. define Package/python-pyopenssl/description
  29. Python wrapper module around the OpenSSL library
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
  33. endef
  34. $(eval $(call PyPackage,python-pyopenssl))
  35. $(eval $(call BuildPackage,python-pyopenssl))