debian/control: Vcs-Git: https://repo.or.cz/r/xz/debian
[xz/debian.git] / debian / control
blob661e79efa81c3aedf2a9df627c27ed8728a970b3
1 Source: xz-utils
2 Section: utils
3 Priority: required
4 Maintainer: Jonathan Nieder <jrnieder@gmail.com>
5 Uploaders: Mohammed Adnène Trojette <adn+deb@diwi.org>
6 Build-Depends: debhelper (>= 8.9.0), dpkg-dev (>= 1.16.2),
7  autoconf (>= 2.64~), automake, libtool (>= 2.2),
8  gettext, autopoint | gettext (<< 0.18-1), autopoint | cvs
9 Build-Depends-Indep: doxygen
10 Build-Conflicts: automake1.4
11 Standards-Version: 3.9.3
12 Vcs-Browser: https://repo.or.cz/w/xz/debian
13 Vcs-Git: https://repo.or.cz/r/xz/debian
14 Homepage: http://tukaani.org/xz/
16 Package: liblzma5
17 Section: libs
18 Architecture: any
19 Depends: ${shlibs:Depends}, ${misc:Depends}
20 Pre-Depends: ${misc:Pre-Depends}
21 Breaks: liblzma2 (<< 5.1.1alpha+20110809-3~)
22 Multi-Arch: same
23 Description: XZ-format compression library
24  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
25  compression format, which provides memory-hungry but powerful
26  compression (often better than bzip2) and fast, easy decompression.
27  .
28  The native format of liblzma is XZ; it also supports raw (headerless)
29  streams and the older LZMA format used by lzma. (For 7-Zip's related
30  format, use the p7zip package instead.)
32 Package: xz-utils
33 Priority: standard
34 Architecture: any
35 Depends: ${shlibs:Depends}, ${misc:Depends}
36 Multi-Arch: foreign
37 Conflicts: lzma (<< 9.22-1), xz-lzma
38 Breaks: lzip (<< 1.8~rc2)
39 Replaces: lzip (<< 1.8~rc2), xz-lzma
40 Provides: lzma
41 Description: XZ-format compression utilities
42  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
43  compression format, which provides memory-hungry but powerful
44  compression (often better than bzip2) and fast, easy decompression.
45  .
46  This package provides the command line tools for working with XZ
47  compression, including xz, unxz, xzcat, xzgrep, and so on. They can
48  also handle the older LZMA format, and if invoked via appropriate
49  symlinks will emulate the behavior of the commands in the lzma
50  package.
51  .
52  The XZ format is similar to the older LZMA format but includes some
53  improvements for general use:
54  .
55   * 'file' magic for detecting XZ files;
56   * crc64 data integrity check;
57   * limited random-access reading support;
58   * improved support for multithreading (not used in xz-utils);
59   * support for flushing the encoder.
61 Package: xzdec
62 Priority: extra
63 Architecture: any
64 Depends: ${shlibs:Depends}, ${misc:Depends}
65 Multi-Arch: foreign
66 Suggests: xz-utils
67 Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
68 Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
69 Description: XZ-format compression utilities - tiny decompressors
70  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
71  compression format, which provides memory-hungry but powerful
72  compression (often better than bzip2) and fast, easy decompression.
73  .
74  This package provides the xzdec and lzmadec utilities, which write
75  the decompressed version of a compressed file to standard output. The
76  binaries are very small, so they can be easily stored on small media
77  with some compressed files, and they are linked statically against
78  liblzma so they can be used on machines without a compatible version
79  of liblzma installed. However, they have:
80  .
81    * no compression support;
82    * no support for writing to a file other than standard output;
83    * no translated messages;
84    * been optimized for size rather than speed.
85  .
86  For a full-featured xzcat command without these limitations, use
87  the xz-utils package instead.
89 Package: liblzma-dev
90 Section: libdevel
91 Priority: optional
92 Multi-Arch: same
93 Architecture: any
94 Depends: liblzma5 (= ${binary:Version}), ${misc:Depends}
95 Suggests: liblzma-doc
96 Description: XZ-format compression library - development files
97  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
98  compression format, which provides memory-hungry but powerful
99  compression (often better than bzip2) and fast, easy decompression.
101  The native format of liblzma is XZ; it also supports raw (headerless)
102  streams and the older LZMA format used by lzma. (For 7-Zip's related
103  format, use the p7zip package instead.) This package provides the
104  development library needed to build programs using liblzma.
106 Package: liblzma-doc
107 Section: doc
108 Priority: optional
109 Architecture: all
110 Depends: ${misc:Depends}
111 Suggests: liblzma-dev
112 Description: XZ-format compression library - API documentation
113  This package contains a reference manual for the liblzma data
114  compression library, in Doxygen-generated HTML files. The purpose
115  of each struct, macro, and function in the public interface is
116  explained.