summaryrefslogtreecommitdiff
path: root/package/lua/Config.in.lib
blob: 102d57d7072097446d9c645c0c3e88574acd7007 (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
config ADK_PACKAGE_LIBLUA
	prompt "liblua............................ LUA programming language shared libraries"
	tristate
	select ADK_COMPILE_LUA
	help
	  Lua is a powerful light-weight programming language designed for extending 
	  applications. Lua is also frequently used as a general-purpose, stand-alone 
	  language. Lua is free software.
	  
	  Lua combines simple procedural syntax with powerful data description 
	  constructs based on associative arrays and extensible semantics. Lua is 
	  dynamically typed, interpreted from bytecodes, and has automatic memory 
	  management with garbage collection, making it ideal for configuration, 
	  scripting, and rapid prototyping.
	  
	  Lua is implemented as a small library of C functions, written in ANSI C, and 
	  compiles unmodified in all known platforms. The implementation goals are 
	  simplicity, efficiency, portability, and low embedding cost. The result is a 
	  fast language engine with small footprint, making it ideal in embedded systems 
	  too.
	  
	  http://www.lua.org/
	  
	  This package contains the LUA shared libraries, needed by other programs.