From 0eafafbe3dcff1362ee7f0617af6b75e22cd5014 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 11 Jan 2011 21:45:55 +0100 Subject: python-serial: new package python-serial is a Python library to access serial ports. This package has originally been introduced to test that third-party pure Python modules (that do not use C extensions) build properly against the Buildroot Python infrastructure. Signed-off-by: Thomas Petazzoni --- package/python-serial/python-serial.mk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 package/python-serial/python-serial.mk (limited to 'package/python-serial/python-serial.mk') diff --git a/package/python-serial/python-serial.mk b/package/python-serial/python-serial.mk new file mode 100644 index 0000000000..048930bae8 --- /dev/null +++ b/package/python-serial/python-serial.mk @@ -0,0 +1,21 @@ +############################################################# +# +# python-serial +# +############################################################# + +PYTHON_SERIAL_VERSION = 2.5 +PYTHON_SERIAL_SOURCE = pyserial-$(PYTHON_SERIAL_VERSION).tar.gz +PYTHON_SERIAL_SITE = http://pypi.python.org/packages/source/p/pyserial/ + +PYTHON_SERIAL_DEPENDENCIES = python + +define PYTHON_SERIAL_BUILD_CMDS + (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py build) +endef + +define PYTHON_SERIAL_INSTALL_TARGET_CMDS + (cd $(@D); $(HOST_DIR)/usr/bin/python setup.py install --prefix=$(TARGET_DIR)/usr) +endef + +$(eval $(call GENTARGETS,package,python-serial)) -- cgit v1.2.3