1
0

Config.in.lib 1.1 KB

12345678910111213141516171819202122232425
  1. config ADK_PACKAGE_LIBLUA
  2. prompt "liblua............................ LUA programming language shared libraries"
  3. tristate
  4. select ADK_COMPILE_LUA
  5. help
  6. Lua is a powerful light-weight programming language designed for extending
  7. applications. Lua is also frequently used as a general-purpose, stand-alone
  8. language. Lua is free software.
  9. Lua combines simple procedural syntax with powerful data description
  10. constructs based on associative arrays and extensible semantics. Lua is
  11. dynamically typed, interpreted from bytecodes, and has automatic memory
  12. management with garbage collection, making it ideal for configuration,
  13. scripting, and rapid prototyping.
  14. Lua is implemented as a small library of C functions, written in ANSI C, and
  15. compiles unmodified in all known platforms. The implementation goals are
  16. simplicity, efficiency, portability, and low embedding cost. The result is a
  17. fast language engine with small footprint, making it ideal in embedded systems
  18. too.
  19. http://www.lua.org/
  20. This package contains the LUA shared libraries, needed by other programs.