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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
Source: lua50
Section: interpreters
Priority: optional
Maintainer: Enrico Tassi <gareuselesinge@debian.org>
Build-Depends: debhelper (>= 5), libreadline-dev, quilt (>= 0.40)
Standards-Version: 3.9.2
Homepage: http://www.lua.org
Vcs-Git: git://git.debian.org/git/pkg-lua/lua50.git
Vcs-Browser: http://git.debian.org/?p=pkg-lua/lua50.git
Package: lua50
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: lua
Description: Small embeddable language with simple procedural syntax
Lua is a programming language originally designed for extending
applications, but also frequently used as a general-purpose,
stand-alone language.
.
Lua combines simple procedural syntax (similar to Pascal) with
powerful data description constructs based on associative arrays and
extensible semantics. Lua is dynamically typed, interpreted from
bytecodes, and has automatic memory management, making it ideal for
configuration, scripting, and rapid prototyping. Lua is implemented
as a small library of C functions, written in ANSI C, and the
implementation goals are simplicity, efficiency, portability, and low
embedding cost.
Package: lua50-doc
Architecture: all
Recommends: w3m | www-browser
Suggests: lua50
Depends: ${misc:Depends}
Section: doc
Description: Documentation for the Lua 5.0 programming language
This is the documentation for the Lua 5.0 programming language.
.
This package includes the HTML versions of the manual pages
and the language manual itself.
Package: liblua50
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Section: libs
Description: Main interpreter library for the Lua 5.0 programming language
Lua is a powerful language which can be included in your C/C++ projects
using this library.
.
For more information, please see the lua50 and lua50-doc packages
Package: liblua50-dev
Architecture: any
Depends: libc6-dev | libc-dev, liblua50 (= ${binary:Version}), lua50, ${misc:Depends}
Recommends: pkg-config
Section: libdevel
Description: Main interpreter library for Lua 5.0: static library and headers
Using this package you can develop applications which have Lua interpreters
built into them.
Package: liblualib50
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Section: libs
Description: Extension library for the Lua 5.0 programming language
This package provides string, maths and IO functions to liblua50.
.
This package will most commonly be installed by programs depending on it
or by authors using the liblualib50-dev package
Package: liblualib50-dev
Architecture: any
Depends: libc6-dev | libc-dev, liblua50-dev, liblualib50 (= ${binary:Version}), ${misc:Depends}
Recommends: pkg-config
Section: libdevel
Description: Extension library for Lua 5.0: static and headers
This package allows you to link to the Lua standard libraries
providing maths, string and IO functions to your Lua based programs.
|