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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
Source: libzip
Priority: optional
Maintainer: Debian Libzip Maintainers <libzip@tracker.debian.org>
Uploaders: Ondřej Surý <ondrej@debian.org>,
Florian Ernst <florian@debian.org>
Build-Depends: cmake,
debhelper-compat (= 13),
dpkg-dev (>= 1.22.5),
libbz2-dev,
liblzma-dev,
libssl-dev,
libzstd-dev,
mandoc,
unzip,
zlib1g-dev
Standards-Version: 4.7.2
Section: libs
Rules-Requires-Root: no
Homepage: https://libzip.org
Vcs-Git: https://salsa.debian.org/debian/libzip.git
Vcs-Browser: https://salsa.debian.org/debian/libzip
Package: libzip-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libzip5 (= ${binary:Version}),
zipcmp (= ${binary:Version}),
zipmerge (= ${binary:Version}),
ziptool (= ${binary:Version}),
zlib1g-dev,
${misc:Depends}
Description: library for reading, creating, and modifying zip archives (development)
libzip is a C library for reading, creating, and modifying zip archives. Files
can be added from data buffers, files, or compressed data copied directly from
other zip archives. Changes made without closing the archive can be reverted.
.
This package contains the static libraries and headers for developing
applications that use the libzip library API.
Package: libzip5
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends},
${shlibs:Depends}
Description: library for reading, creating, and modifying zip archives (runtime)
libzip is a C library for reading, creating, and modifying zip archives. Files
can be added from data buffers, files, or compressed data copied directly from
other zip archives. Changes made without closing the archive can be reverted.
.
This package contains the files necessary for running applications that
use the libzip library.
Package: zipcmp
Section: utils
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends}
Description: compare contents of zip archives
zipcmp compares two zip archives and checks if they contain the same files,
comparing their names, uncompressed sizes, and CRCs. File order and compressed
size differences are ignored.
Package: zipmerge
Section: utils
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends}
Description: merge zip archives
zipmerge merges a source zip archives into a target zip archive.
By default, files in the source zip archives overwrite existing files of the
same name in the target zip archive.
Package: ziptool
Section: utils
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends}
Description: modify zip archives
ziptool is a utility for working with zip archives. It can modify
details of zip archives according to the commands given, including
timestamps and other metadata about the included files.
|