summaryrefslogtreecommitdiff
path: root/openwrt/package/lua/Config.in
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-26 21:28:31 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-26 21:28:31 +0000
commitefa2af5aa6205e82aa87118b164ec4306c01e108 (patch)
treef731281f8fb8f1071242fbf68df119400f9fa066 /openwrt/package/lua/Config.in
parent649dbaf7d266d7a2e1012b67f3889cb7bdbed396 (diff)
Add lua package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1066 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/lua/Config.in')
-rw-r--r--openwrt/package/lua/Config.in119
1 files changed, 119 insertions, 0 deletions
diff --git a/openwrt/package/lua/Config.in b/openwrt/package/lua/Config.in
new file mode 100644
index 0000000000..573f2135a4
--- /dev/null
+++ b/openwrt/package/lua/Config.in
@@ -0,0 +1,119 @@
+menu "lua - LUA programming language"
+
+config BR2_PACKAGE_LUA
+ bool
+ default n
+ depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA
+
+config BR2_PACKAGE_LUA_INTERPRETER
+ tristate "lua - LUA programming language interpreter"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_PACKAGE_LUA
+ select BR2_PACKAGE_LIBLUA
+ 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 language interpreter.
+
+
+config BR2_PACKAGE_LUA_COMPILER
+ tristate "luac - LUA programming language compiler"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_PACKAGE_LUA
+ select BR2_PACKAGE_LIBLUA
+ 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 language compiler.
+
+
+config BR2_PACKAGE_LUA_EXAMPLES
+ tristate "lua-examples - LUA programming language examples"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_PACKAGE_LUA
+ select BR2_PACKAGE_LUA_INTERPRETER
+ 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 LUA language examples.
+
+
+config BR2_PACKAGE_LIBLUA
+ tristate "liblua - LUA programming language shared libraries"
+# default m if CONFIG_DEVEL
+ default n
+ select BR2_PACKAGE_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.
+
+
+endmenu