The "rgbmatrix" python module is the Python binding for rpi-rgb-led-matrix, built from the same source repository. Signed-off-by: J. Neuschäfer <j.neuschaefer@gmx.net> [yann.morin.1998@free.fr: - add comment for propagated dependencies - add comment on missing dependencies - drop comment at end of _VERSION line ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
15 lines
571 B
Plaintext
15 lines
571 B
Plaintext
config BR2_PACKAGE_PYTHON_RGBMATRIX
|
|
bool "python-rgbmatrix"
|
|
depends on BR2_aarch64 || BR2_arm # rpi-rgb-led-matrix
|
|
depends on BR2_INSTALL_LIBSTDCPP # rpi-rgb-led-matrix
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # rpi-rgb-led-matrix
|
|
depends on !BR2_STATIC_LIBS # rpi-rgb-led-matrix
|
|
select BR2_PACKAGE_HOST_PYTHON_CYTHON
|
|
select BR2_PACKAGE_RPI_RGB_LED_MATRIX
|
|
|
|
comment "python-rgbmatrix needs a toolchain w/ C++, threads, dynamic libraries"
|
|
depends on BR2_aarch64 || BR2_arm
|
|
depends on !BR2_INSTALL_LIBSTDCPP \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| BR2_STATIC_LIBS
|