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
|
Source: mujs
Priority: optional
Maintainer: Daniel Echeverri <epsilon@debian.org>
Build-Depends: debhelper-compat (= 13), libreadline-dev
Standards-Version: 4.7.0
Section: javascript
Rules-Requires-Root: no
Homepage: https://mujs.com/
Vcs-Browser: https://salsa.debian.org/debian/mujs
Vcs-Git: https://salsa.debian.org/debian/mujs.git
Package: libmujs-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libmujs3 (= ${binary:Version}), ${misc:Depends}
Description: Lightweight JavaScript interpreter (development package)
MuJS is a lightweight JavaScript interpreter designed for embedding in other
software to extend them with scripting capabilities.
.
MuJS was designed with a focus on small size, correctness, and simplicity.
It is written in portable C and implements ECMAScript as specified by ECMA-262.
The interface for binding with native code is designed to be as simple as
possible to use, and is very similar to Lua. There is no need to interact with
byzantine C++ template mechanisms, or worry about marking and unmarking garbage
collection roots, or wrestle with obscure build systems.
Package: libmujs3
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Lightweight JavaScript interpreter library
MuJS is a lightweight JavaScript interpreter designed for embedding in other
software to extend them with scripting capabilities.
.
MuJS was designed with a focus on small size, correctness, and simplicity.
This package contains the shared runtime library.
Package: mujs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Lightweight JavaScript interpreter
MuJS is a lightweight JavaScript interpreter designed for embedding in other
software to extend them with scripting capabilities.
.
MuJS was designed with a focus on small size, correctness, and simplicity.
This package contains the command line interpreter.
|