debian/control: Follow current policy for Priority field
[xz/debian.git] / debian / control
blob6b4dbd26d4788af73824e208ce55617f5623a183
1 Source: xz-utils
2 Section: utils
3 Priority: optional
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: https://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 Architecture: any
63 Depends: ${shlibs:Depends}, ${misc:Depends}
64 Multi-Arch: foreign
65 Suggests: xz-utils
66 Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
67 Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
68 Description: XZ-format compression utilities - tiny decompressors
69  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
70  compression format, which provides memory-hungry but powerful
71  compression (often better than bzip2) and fast, easy decompression.
72  .
73  This package provides the xzdec and lzmadec utilities, which write
74  the decompressed version of a compressed file to standard output. The
75  binaries are very small, so they can be easily stored on small media
76  with some compressed files, and they are linked statically against
77  liblzma so they can be used on machines without a compatible version
78  of liblzma installed. However, they have:
79  .
80    * no compression support;
81    * no support for writing to a file other than standard output;
82    * no translated messages;
83    * been optimized for size rather than speed.
84  .
85  For a full-featured xzcat command without these limitations, use
86  the xz-utils package instead.
88 Package: liblzma-dev
89 Section: libdevel
90 Multi-Arch: same
91 Architecture: any
92 Depends: liblzma5 (= ${binary:Version}), ${misc:Depends}
93 Suggests: liblzma-doc
94 Description: XZ-format compression library - development files
95  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
96  compression format, which provides memory-hungry but powerful
97  compression (often better than bzip2) and fast, easy decompression.
98  .
99  The native format of liblzma is XZ; it also supports raw (headerless)
100  streams and the older LZMA format used by lzma. (For 7-Zip's related
101  format, use the p7zip package instead.) This package provides the
102  development library needed to build programs using liblzma.
104 Package: liblzma-doc
105 Section: doc
106 Architecture: all
107 Depends: ${misc:Depends}
108 Suggests: liblzma-dev
109 Description: XZ-format compression library - API documentation
110  This package contains a reference manual for the liblzma data
111  compression library, in Doxygen-generated HTML files. The purpose
112  of each struct, macro, and function in the public interface is
113  explained.