e5c392830e
[Thomas: taken from Mischa original github patch.] Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
813 B
Makefile
27 lines
813 B
Makefile
################################################################################
|
|
#
|
|
# python-ipy
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_IPY_VERSION = IPy-0.75
|
|
PYTHON_IPY_SITE = $(call github,haypo,python-ipy,$(PYTHON_IPY_VERSION))
|
|
PYTHON_IPY_DEPENDENCIES = host-python python
|
|
PYTHON_IPY_LICENSE = BSD-3c
|
|
PYTHON_IPY_LICENSE_FILES = COPYING
|
|
|
|
define PYTHON_IPY_BUILD_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(HOST_DIR)/usr/bin/python setup.py build_ext \
|
|
--include-dirs=$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR) \
|
|
)
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build)
|
|
endef
|
|
|
|
define PYTHON_IPY_INSTALL_TARGET_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|