Command to List RPM BuildRequires (like Debian's dpkg-depcheck)
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Command to List RPM BuildRequires (like Debian's dpkg-depcheck)
Howdy All,
I am diving into building RPM packages and I am wondering if there is an equal command in the RPM world to Debian's dpkg-depcheck. Essentially what it does is list all the packages need to build a given piece of source code when you run the command and point it to a configure or autogen.sh file.
Is there something for RPMs that would do this as well?
Distribution: pclos2010.12, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 9,299
Rep:
When it is an unknown Debian package : No command will find any dependencies.
And no data base to look into. That's for known packages.
For an unknown rpm package : The same.
For a known src.rpm package : Read the spec file.
Or use : grep Buildrequires <file>.spec
( You will have to open the SRC.RPM to read the file.)
For unknown packages to be build the first time with a spec file :
Use e.g. ldd <binary> on a result, that was built with a basic method,
e.g. ./configure && make.
..
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.