When I download some package sources, (e.g. foo-[ver].orig.tar.gz, foo-[ver].dsc), I often encounter dependencies problem while using dpkg-source -x foo-[ver].dsc and dpkg-buildpackage -us -uc .... In this case, I have to install the building dependencies one by one. Is there some tool to automatically handle this case, e.g., dpkg-source-dependencies -x foo-[ver].dsc?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 0 down vote accepted

pbuilder is just the tool for this job. pbuilder will set up a minimal distribution in a tarball upon install. For building a .dsc file, you supply the file and pbuilder unzips the tarball, chroots, installs all necessary build dependencies and compiles the package. As a result of this procedure, your build result is independent from the current configuration of the host machine.

link|improve this answer
The pbuilder is a little complex. I'll try it. Thanks anyway. – Exaos Jan 23 at 13:37
feedback

When trying to build a package the following should grab all dependencies

apt-get --build-dep [package-name]

Also, apt-get can compile source packages is needs be:

apt-get --build [package-name]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.