mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Add a new smart library for CLI / command line. Signed-off-by: Vincent Jardin <vjardin@free.fr> [Julien: - reworded Config.in help string to match upstream - select BR2_PACKAGE_LIBEDIT (rather than depends on) - add libedit "depends on" dependencies - disable static builds - add Config.in comment ] Signed-off-by: Julien Olivain <ju.o@free.fr>
18 lines
491 B
Plaintext
18 lines
491 B
Plaintext
config BR2_PACKAGE_LIBECOLI
|
|
bool "libecoli"
|
|
depends on BR2_USE_MMU # libedit
|
|
depends on BR2_USE_WCHAR # libedit
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_LIBEDIT
|
|
help
|
|
libecoli stands for Extensible COmmand LIne library.
|
|
|
|
This library provides helpers to build interactive command
|
|
line interfaces.
|
|
|
|
https://github.com/rjarry/libecoli/
|
|
|
|
comment "libecoli needs a toolchain w/ dynamic library, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|