summaryrefslogtreecommitdiffstats
path: root/man/deb-split.pod
blob: 1d8cbb1c0a3f00968d7d283c02e46f6bb0734b18 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
# dpkg manual page - deb-split(5)
#
# Copyright © 2009-2012 Guillem Jover <guillem@debian.org>
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

=encoding utf8

=head1 NAME

deb-split - Debian multi-part binary package format

=head1 SYNOPSIS

I<filename>B<.deb>

=head1 DESCRIPTION

The multi-part B<.deb> format is used to split big packages into smaller
pieces to ease transport in small media.

=head1 FORMAT

The file is an B<ar> archive with a magic value of B<!E<lt>archE<gt>>.
The file names might contain a trailing slash (since dpkg 1.15.6).

The first member is named B<debian-split> and contains a series
of lines, separated by newlines. Currently eight lines are present:

=over

=item *

The format version number, B<2.1> at the time this manual page was
written.

=item *

The package name.

=item *

The package version.

=item *

The md5sum of the package.

=item *

The total size of the package.

=item *

The maximum part size.

=item *

The current part number, followed by a slash and the total amount of
parts (as in ‘1/10’).

=item *

The package architecture (since dpkg 1.16.1).

=back

Programs which read multi-part archives should be prepared for the minor
format version number to be increased and additional lines to be present,
and should ignore these if this is the case.

If the major format version number has changed, an incompatible change has
been made and the program should stop. If it has not, then the program should
be able to safely continue, unless it encounters an unexpected member
in the archive (except at the end), as described below.

The second, last required member is named B<data.>I<N>, where I<N>
denotes the part number. It contains the raw part data.

These members must occur in this exact order. Current implementations
should ignore any additional members after B<data.>I<N>.
Further members may be defined in the future, and (if possible) will be
placed after these two.

=head1 SEE ALSO

B<deb>(5),
B<dpkg-split>(1).