mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
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 <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
b0c86bcc57
commit
0eafafbe3d
@ -294,6 +294,7 @@ source "package/libraw1394/Config.in"
|
|||||||
source "package/tslib/Config.in"
|
source "package/tslib/Config.in"
|
||||||
source "package/libusb/Config.in"
|
source "package/libusb/Config.in"
|
||||||
source "package/libusb-compat/Config.in"
|
source "package/libusb-compat/Config.in"
|
||||||
|
source "package/python-serial/Config.in"
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
if BROKEN
|
if BROKEN
|
||||||
|
8
package/python-serial/Config.in
Normal file
8
package/python-serial/Config.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
config BR2_PACKAGE_PYTHON_SERIAL
|
||||||
|
bool "python-serial"
|
||||||
|
depends on BR2_PACKAGE_PYTHON
|
||||||
|
help
|
||||||
|
python-serial is a Python library to access serial ports.
|
||||||
|
|
||||||
|
http://pyserial.sf.net
|
||||||
|
|
21
package/python-serial/python-serial.mk
Normal file
21
package/python-serial/python-serial.mk
Normal file
@ -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))
|
Loading…
x
Reference in New Issue
Block a user