blob: 76359c0df504e6e5295b77da246557250b31bed5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | 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
 |