Managing Debian Software with APT (apt-get etc) |
Prev |
Home |
Next |
APT HOWTO
Chapter 6 - Working with source packages
6.1 Downloading source packages
It's common in the world of free software to study source code or even make
corrections to buggy code. To do this, you would need to download the source
of the program. The APT system provides an easy way to obtain source code to
the many programs contained in the distribution, including all the files needed
to create a .deb for the program.
Another common use of Debian sources is to adapt a more recent version of a
program, from the unstable distribution, for example, for use with the stable
distribution. Compiling a package against stable will generate .debs with
dependencies adjusted to match the packages available in this distribution.
To accomplish this, the deb-src entry in your
/etc/apt/sources.list should be pointed at unstable. It should
also be enabled (uncommented). See section The /etc/apt/sources.list file, Section
2.1.
To download a source package, you would use the following command:
$ apt-get source packagename
This will download three files: a .orig.tar.gz, a
.dsc and a .diff.gz. In the case of packages made
specifically for Debian, the last of these is not downloaded and the first
usually won't have "orig" in the name.
The .dsc file is used by dpkg-source for unpacking the source
package into the directory packagename-version. Within each
downloaded source package there is a debian/ directory that
contains the files needed for creating the .deb package.
To auto-build the package when it's been downloaded, just add -b
to the command line, like this:
$ apt-get -b source packagename
If you decide not to create the .deb at the time of the download, you can
create it later by running:
$ dpkg-buildpackage -rfakeroot -uc -b
from within the directory that was created for the package after downloading.
To install the package built by the commands above one must use the package
manager directly, like this:
# dpkg -i file.deb
There's a difference between apt-get
's source method
and its other methods. The source method can be used by normal
users, without needing special root powers. The files are downloaded to the
directory from which the apt-get source package command was
called.
Managing Debian Software with APT (apt-get etc) |
Prev |
Home |
Next |