df70822c62
According to the documentation, chapter 6.2.8.2 How to add a package from github " [...] FOO_VERSION = tag or full commit ID FOO_SITE = http://github.com/<user>/<package>/tarball/$(FOO_VERSION) [...] - The tarball name generated by github matches the default one from Buildroot (...), so it is not necessary to specify it in the +.mk+ file. " This commit makes the appropriate changes. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
825 B
Makefile
27 lines
825 B
Makefile
################################################################################
|
|
#
|
|
# python-ipy
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_IPY_VERSION = IPy-0.75
|
|
PYTHON_IPY_SITE = https://github.com/haypo/python-ipy/tarball/$(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))
|