mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Set openssl path via env instead of build options which is no longer
supported.
The openssl build option was removed when the env variable was added:
e181abc72b
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
19 lines
749 B
Makefile
19 lines
749 B
Makefile
################################################################################
|
|
#
|
|
# python-m2crypto
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_M2CRYPTO_VERSION = 0.42.0
|
|
PYTHON_M2CRYPTO_SOURCE = m2crypto-$(PYTHON_M2CRYPTO_VERSION).tar.gz
|
|
PYTHON_M2CRYPTO_SITE = https://files.pythonhosted.org/packages/85/9f/b8977ce2971cf5f823db3fdb31e7e061b9662da318a17b6bf0c653f84aee
|
|
PYTHON_M2CRYPTO_SETUP_TYPE = setuptools
|
|
PYTHON_M2CRYPTO_LICENSE = MIT
|
|
PYTHON_M2CRYPTO_LICENSE_FILES = LICENCE
|
|
PYTHON_M2CRYPTO_CPE_ID_VENDOR = m2crypto_project
|
|
PYTHON_M2CRYPTO_CPE_ID_PRODUCT = m2crypto
|
|
PYTHON_M2CRYPTO_DEPENDENCIES = openssl host-swig
|
|
PYTHON_M2CRYPTO_ENV = OPENSSL_PATH="$(STAGING_DIR)/usr"
|
|
|
|
$(eval $(python-package))
|