codenamezero
codenamezero

Reputation: 3079

How to building a rpm from multiple projects

I know how to build rpm for its own project, however I am not sure what is the proper way to build a rpm that depend on multiple projects to be build first. For example, say I have project A, B, C, D, and FINAL.

So if i am to make rpm for FINAL, what would be the proper way to trigger the other projects to build?

Upvotes: 0

Views: 103

Answers (1)

Aaron D. Marasco
Aaron D. Marasco

Reputation: 6758

Your specfile should say it Requires "D" and BuildRequires "D-devel" or something similar. The "D" RPM(s) should handle the A/B/C requirements. You shouldn't be building unrelated RPMs at the same time.

Upvotes: 1

Related Questions