kumquat-buildroot/package/lua/Config.in
Thomas Petazzoni b16c6ac474 lua: embed sub-options into a if...endif instead of depends on
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-07-17 21:28:32 +02:00

36 lines
739 B
Plaintext

config BR2_PACKAGE_LUA
bool "lua"
help
Lua is a powerful, fast, light-weight, embeddable scripting language.
http://www.lua.org/
if BR2_PACKAGE_LUA
config BR2_PACKAGE_LUA_COMPILER
bool "lua compiler"
select BR2_PACKAGE_LUA_SHARED_LIBRARY
help
Install luac binary
config BR2_PACKAGE_LUA_INTERPRETER
bool "lua interpreter"
select BR2_PACKAGE_LUA_SHARED_LIBRARY
help
Install lua binary
config BR2_PACKAGE_LUA_INTERPRETER_READLINE
bool "readline support"
depends on BR2_PACKAGE_LUA_INTERPRETER
select BR2_PACKAGE_READLINE
select BR2_PACKAGE_NCURSES
help
Enables command-line editing in the lua interpreter.
config BR2_PACKAGE_LUA_SHARED_LIBRARY
bool "shared library"
help
Install shared liblua.so
endif