python-m2crypto: convert to the Python package infrastructure

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas Petazzoni 2013-12-11 21:26:42 +01:00 committed by Peter Korsgaard
parent 1825edece0
commit dcd90b00ed
1 changed files with 8 additions and 12 deletions

View File

@ -7,20 +7,16 @@
PYTHON_M2CRYPTO_VERSION = 0.21.1
PYTHON_M2CRYPTO_SITE = http://pypi.python.org/packages/source/M/M2Crypto
PYTHON_M2CRYPTO_SOURCE = M2Crypto-$(PYTHON_M2CRYPTO_VERSION).tar.gz
HOST_PYTHON_M2CRYPTO_DEPENDENCIES = host-openssl host-python host-python-setuptools host-swig
PYTHON_M2CRYPTO_SETUP_TYPE = setuptools
HOST_PYTHON_M2CRYPTO_DEPENDENCIES = host-openssl host-swig
# We need to override the build commands to be able to use build_ext,
# which accepts the --openssl option.
define HOST_PYTHON_M2CRYPTO_BUILD_CMDS
(cd $(@D); \
$(HOST_CONFIGURE_OPTS) \
PYTHONXCPREFIX="$(HOST_DIR)/usr/" \
LDFLAGS="-L$(HOST_DIR)/lib -L$(HOST_DIR)/usr/lib" \
$(HOST_DIR)/usr/bin/python setup.py build_ext --openssl=$(HOST_DIR)/usr)
$(HOST_PKG_PYTHON_SETUPTOOLS_ENV) \
$(HOST_DIR)/usr/bin/python setup.py build_ext \
--openssl=$(HOST_DIR)/usr)
endef
define HOST_PYTHON_M2CRYPTO_INSTALL_CMDS
(cd $(@D); \
PYTHONPATH=$(HOST_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
$(HOST_DIR)/usr/bin/python setup.py install --prefix=$(HOST_DIR)/usr)
endef
$(eval $(host-generic-package))
$(eval $(host-python-package))