blob: 1f038e39cdeadfaa150204c5ce74038bfb5e51ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
################################################################################
#
# python-m2crypto
#
################################################################################
PYTHON_M2CRYPTO_VERSION = 0.22.5
PYTHON_M2CRYPTO_SITE = http://pypi.python.org/packages/source/M/M2Crypto
PYTHON_M2CRYPTO_SOURCE = M2Crypto-$(PYTHON_M2CRYPTO_VERSION).tar.gz
PYTHON_M2CRYPTO_SETUP_TYPE = setuptools
HOST_PYTHON_M2CRYPTO_DEPENDENCIES = host-openssl host-swig
# We need to use python2 because m2crypto is not python3 compliant.
HOST_PYTHON_M2CRYPTO_NEEDS_HOST_PYTHON = python2
HOST_PYTHON_M2CRYPTO_BUILD_DIR = $(@D)/build/lib.linux-$(HOSTARCH)-$(PYTHON_VERSION_MAJOR)
# * We need to override the build commands to be able to use build_ext,
# which accepts the --openssl option.
# * Use python2 interpreter to avoid trying building some python3 objects.
# * because build_ext is flawed, is forgets to copy the files prior to
# the build, so we do it manually.
define HOST_PYTHON_M2CRYPTO_BUILD_CMDS
mkdir -p $(HOST_PYTHON_M2CRYPTO_BUILD_DIR)
cp -av $(@D)/M2Crypto $(HOST_PYTHON_M2CRYPTO_BUILD_DIR)/M2Crypto
(cd $(@D); \
$(HOST_PKG_PYTHON_SETUPTOOLS_ENV) \
$(HOST_DIR)/usr/bin/python2 setup.py build_ext \
--openssl=$(HOST_DIR)/usr)
endef
$(eval $(host-python-package))
|