debian/rules: Use /bin/sh as POSIX shell regardless of build environment
[xz/debian.git] / debian / control
blob7e91b735a12efa2534669f6b242407c42106f361
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, freebsd-glue [kfreebsd-any]
9 Build-Depends-Indep: doxygen
10 Build-Conflicts: automake1.4
11 Standards-Version: 3.9.3
12 Vcs-Browser: http://git.debian.org/?p=collab-maint/xz.git
13 Vcs-Git: git://git.debian.org/collab-maint/xz.git
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 Multi-Arch: same
22 Description: XZ-format compression library
23  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
24  compression format, which provides memory-hungry but powerful
25  compression (often better than bzip2) and fast, easy decompression.
26  .
27  The native format of liblzma is XZ; it also supports raw (headerless)
28  streams and the older LZMA format used by lzma. (For 7-Zip's related
29  format, use the p7zip package instead.)
31 Package: xz-utils
32 Architecture: any
33 Depends: ${shlibs:Depends}, ${misc:Depends}
34 Multi-Arch: foreign
35 Conflicts: lzma (<< 9.22-1), xz-lzma
36 Breaks: lzip (<< 1.8~rc2)
37 Replaces: lzip (<< 1.8~rc2), xz-lzma
38 Provides: lzma
39 Description: XZ-format compression utilities
40  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
41  compression format, which provides memory-hungry but powerful
42  compression (often better than bzip2) and fast, easy decompression.
43  .
44  This package provides the command line tools for working with XZ
45  compression, including xz, unxz, xzcat, xzgrep, and so on. They can
46  also handle the older LZMA format, and if invoked via appropriate
47  symlinks will emulate the behavior of the commands in the lzma
48  package.
49  .
50  The XZ format is similar to the older LZMA format but includes some
51  improvements for general use:
52  .
53   * 'file' magic for detecting XZ files;
54   * crc64 data integrity check;
55   * limited random-access reading support;
56   * improved support for multithreading (not used in xz-utils);
57   * support for flushing the encoder.
59 Package: xzdec
60 Priority: extra
61 Architecture: any
62 Depends: ${shlibs:Depends}, ${misc:Depends}
63 Multi-Arch: foreign
64 Suggests: xz-utils
65 Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
66 Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
67 Description: XZ-format compression utilities - tiny decompressors
68  XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
69  compression format, which provides memory-hungry but powerful
70  compression (often better than bzip2) and fast, easy decompression.
71  .
72  This package provides the xzdec and lzmadec utilities, which write
73  the decompressed version of a compressed file to standard output. The
74  binaries are very small, so they can be easily stored on small media
75  with some compressed files, and they are linked statically against
76  liblzma so they can be used on machines without a compatible version
77  of liblzma installed. However, they have:
78  .
79    * no compression support;
80    * no support for writing to a file other than standard output;
81    * no translated messages;
82    * been optimized for size rather than speed.
83  .
84  For a full-featured xzcat command without these limitations, use
85  the xz-utils package instead.
87 Package: liblzma-dev
88 Section: libdevel
89 Priority: optional
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 Priority: optional
107 Architecture: all
108 Depends: ${misc:Depends}
109 Suggests: liblzma-dev
110 Description: XZ-format compression library - API documentation
111  This package contains a reference manual for the liblzma data
112  compression library, in Doxygen-generated HTML files. The purpose
113  of each struct, macro, and function in the public interface is
114  explained.