Commit bdd27411 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files
parent 649915fb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -239,6 +239,7 @@ source "package/php/Config.in"
source "package/python/Config.in"
if BR2_PACKAGE_PYTHON
menu "external python modules"
source "package/python-dpkt/Config.in"
source "package/python-mad/Config.in"
source "package/python-serial/Config.in"
endmenu
+11 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_DPKT
	bool "python-dpkt"
	depends on BR2_PACKAGE_PYTHON
	select BR2_PACKAGE_PYTHON_ZLIB
	help
	  Fast, simple packet creation / parsing, with definitions
	  for the basic TCP/IP protocols.

	  http://code.google.com/p/dpkt/

+22 −0
Original line number Diff line number Diff line
#############################################################
#
# 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 $(call GENTARGETS))