|
|
- #
- # Copyright (C) 2007-2016 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=python-certifi
- PKG_VERSION:=2018.10.15
- PKG_RELEASE:=1
- PKG_LICENSE:=MPL-2.0
-
- PKG_SOURCE:=certifi-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/c/certifi
- PKG_HASH:=6d58c986d22b038c8c0df30d639f23a3e6d172a05c3583e766f4c0b785c0986a
- PKG_BUILD_DIR:=$(BUILD_DIR)/certifi-$(PKG_VERSION)
-
- include $(INCLUDE_DIR)/package.mk
- include ../python-package.mk
-
- define Package/python-certifi
- SUBMENU:=Python
- SECTION:=lang
- CATEGORY:=Languages
- MAINTAINER:=Eneas U de Queiroz <cote2004-github@yahoo.com>
- TITLE:=Python package for providing Mozilla's CA Bundle.
- URL:=http://certifi.io/
- DEPENDS:=+python
- endef
-
- define Package/python-certifi/description
- Certifi is a carefully curated collection of Root Certificates for validating the
- trustworthiness of SSL certificates while verifying the identity of TLS hosts.
- endef
-
- define Build/Compile
- $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
- endef
-
- define Package/python-certifi/install
- $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
- $(CP) \
- $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
- $(1)$(PYTHON_PKG_DIR)
- endef
-
- $(eval $(call BuildPackage,python-certifi))
|