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
|
Source: msgpack-c
Section: libs
Priority: optional
Maintainer: James McCoy <jamessan@debian.org>
Build-Depends-Indep: doxygen,
doxygen-latex
Build-Depends:
cmake (>= 2.8.12),
# 11.2.1~ needed for --buildsystem=cmake+ninja, 11.4~ for 12 beta
debhelper (>= 11.4~),
googletest,
ninja-build,
zlib1g-dev
Standards-Version: 4.2.1
Homepage: https://github.com/msgpack/msgpack-c/
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/jamessan/msgpack-c.git
Vcs-Browser: https://salsa.debian.org/jamessan/msgpack-c
Package: libmsgpackc2
Pre-Depends: ${misc:Pre-Depends}
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: binary-based efficient object serialization library
MessagePack is a binary-based efficient object serialization library.
It enables to exchange structured objects between many languages like JSON.
But unlike JSON, it is very fast and small.
Package: libmsgpack-dev
Section: libdevel
Architecture: any
Depends: libmsgpackc2 (= ${binary:Version}),
${misc:Depends}
Suggests: libmsgpack-doc
Description: binary-based efficient object serialization library (development files)
MessagePack is a binary-based efficient object serialization library.
It enables to exchange structured objects between many languages like JSON.
But unlike JSON, it is very fast and small.
.
This package contains the headers files needed for developing with msgpack-c.
Package: libmsgpack-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}
Description: binary-based efficient object serialization library (docs)
MessagePack is a binary-based efficient object serialization library.
It enables to exchange structured objects between many languages like JSON.
But unlike JSON, it is very fast and small.
.
This package contains the documentation of msgpack-c's API.
|