diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-22 18:24:57 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-22 18:24:57 +0100 |
commit | 7eb57a4fac80b8c745f4ac811a07d134cc448d8a (patch) | |
tree | 7c5786cdee0c22cadf079670e69b45424701b290 /package/lua/Config.in.lib | |
parent | 9ae994b86d18e9d0baa680442e59724815bd872a (diff) | |
parent | c111f14db1b4558ebf5b2e894315c8e5217bf6fc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/lua/Config.in.lib')
-rw-r--r-- | package/lua/Config.in.lib | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/lua/Config.in.lib b/package/lua/Config.in.lib new file mode 100644 index 000000000..102d57d70 --- /dev/null +++ b/package/lua/Config.in.lib @@ -0,0 +1,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. + |