46913a2d4f
Closes #803 Based on initial patch by rvpaasen@t3i.nl [Peter: lua/luac needs liblua.so.* on target] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
35 lines
796 B
Plaintext
35 lines
796 B
Plaintext
config BR2_PACKAGE_LUA
|
|
bool "lua"
|
|
help
|
|
Lua is a powerful, fast, light-weight, embeddable scripting language.
|
|
|
|
http://www.lua.org/
|
|
|
|
config BR2_PACKAGE_LUA_COMPILER
|
|
bool "lua compiler"
|
|
depends on BR2_PACKAGE_LUA
|
|
select BR2_PACKAGE_LUA_SHARED_LIBRARY
|
|
help
|
|
Install luac binary
|
|
|
|
config BR2_PACKAGE_LUA_INTERPRETER
|
|
bool "lua interpreter"
|
|
depends on BR2_PACKAGE_LUA
|
|
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"
|
|
depends on BR2_PACKAGE_LUA
|
|
help
|
|
Install shared liblua.so
|