po: Update German man pages translation
[dpkg.git] / README
blob4097cfcbb37b3614b134e8f22166df205bb83fc8
1 dpkg - Debian's package maintenance system
3 This is the dpkg suite of programs that form the foundation of the Debian's
4 package management system; on the lower layer there are ‘dpkg-deb’ and
5 ‘dpkg-split’ programs handling the binary formats, and ‘dpkg-source’ program
6 handling the source formats; there is a collection of tools to handle building
7 source packages into binary packages; there is the medium-level and less
8 user-friendly command-line interface (CLI) in the form of the ‘dpkg’ command;
9 and then there is the terminal user interface (TUI) ‘dselect’ program (which
10 has gone out of preference in favor of the apt (CLI) and aptitude (TUI)
11 programs).
13 The dpkg suite also includes some other programs currently maintained
14 on external repositories, namely ‘dpkg-repack’, ‘dpkg-www’, ‘dupload’
15 and ‘debsig-verify’.
18 Releases
19 --------
21 The current legacy, stable and development releases can be found at:
23   <https://deb.debian.org/debian/pool/main/d/dpkg/>
25 For older releases check:
27   <https://snapshot.debian.org/package/dpkg/>
30 Mailing List
31 ------------
33 The subscription interface and web archives can be found at:
35   <https://lists.debian.org/debian-dpkg/>
37 The mailing list address is (no subscription required to post):
39   debian-dpkg@lists.debian.org
42 Source Repository
43 -----------------
45 The primary repository can be browsed and cloned from:
47   <https://git.dpkg.org/git/dpkg/dpkg.git>
50 Building from git source
51 ------------------------
53 To prepare the dpkg source tree from git before starting the build process
54 some required software needs to be installed:
56   GNU autoconf >= 2.60
57   GNU automake >= 1.11
58   GNU libtool >= 2.0
59   GNU autopoint >= 0.19.7 (from GNU gettext)
60   GNU gettext >= 0.19.7 (only with --enable-nls)
62 After installing the needed software, and running the following command on
63 the git tree:
65   $ ./autogen
67 the source should be roughly equivalent to the distributed tar source.
69 To enable translated documentation this software will be needed:
71   po4a >= 0.59
74 Building from tar source
75 ------------------------
77 The minimum software required to configure and build dpkg from a tarball is:
79   C89 compiler with few C99 extensions (see doc/coding-style.txt)
80   perl (see doc/coding-style.txt)
81   pkg-config
82   GNU make
84 To enable optional functionality or programs, this software might be needed:
86   libmd (used by libdpkg, required if libc is missing digest functions)
87   libz (from zlib, used instead of gzip command-line tool)
88   liblzma (from xz utils, used instead of xz command-line tool)
89   libbz2 (from bzip2, used instead of bzip2 command-line tool)
90   libselinux
91   curses compatible library (needed on --enable-dselect)
93 To run the test suite («make check» or «make authorcheck» for author tests,
94 those that might not be pertinent during release builds) the following
95 software might be needed:
97   Test::MinimumVersion perl module (optional, author)
98   Test::Pod perl module (optional)
99   Test::Pod::Coverage perl module (optional, author)
100   Test::Spelling perl module (optional, author)
101   Test::Strict perl module (optional)
102   Test::Synopsis perl module (optional, author)
103   Test::Perl::Critic perl module (optional, author)
104   aspell (optional, author)
105   aspell-en (optional, author)
106   codespell (optional, author)
107   cppcheck (optional, author)
108   fakeroot (optional)
109   sq (from Sequoia-PGP, optional)
110   gpg (optional)
111   i18nspector (optional, author)
112   shellcheck (optional, author)
114 To enable additional developer's documentation («make doc») this software
115 will be needed:
117   pod2man
118   doxygen
119   dot
121 To enable code coverage («./configure --enable-coverage; make coverage»)
122 this software is needed:
124   lcov (from the Linux Test Project)
125   Devel-Cover perl module
127 The build process is done by running the usual «./configure; make». To
128 see all available configuration options please run «./configure --help».
129 The following configure options might be of interest to disable specific
130 programs:
132   --disable-dselect
133   --disable-start-stop-daemon
134   --disable-update-alternatives
136 And the following to disable modifications to the build flags:
138   --disable-compiler-warnings
139   --disable-compiler-optimizations
140   --disable-linker-optimizations