e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
567 B
Makefile
23 lines
567 B
Makefile
#############################################################
|
|
#
|
|
# python-dpkt
|
|
#
|
|
#############################################################
|
|
|
|
PYTHON_DPKT_VERSION = 1.7
|
|
PYTHON_DPKT_SOURCE = dpkt-$(PYTHON_DPKT_VERSION).tar.gz
|
|
PYTHON_DPKT_SITE = http://dpkt.googlecode.com/files
|
|
|
|
PYTHON_DPKT_DEPENDENCIES = python
|
|
|
|
define PYTHON_DPKT_BUILD_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build)
|
|
endef
|
|
|
|
define PYTHON_DPKT_INSTALL_TARGET_CMDS
|
|
(cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
|