Krumelur
Krumelur

Reputation: 32497

Create wrapper rpm for other package

I am trying to create an RPM ("mine") to facilitate the installation of another RPM "other" (not maintained by me). This third-party RPM requires packages "foo" and "bar". I want my RPM to provide the packages "foo" and "bar" but with my own implementations. Is it possible to define a RPM that specifies that it provides the other packages?

Upvotes: 0

Views: 1016

Answers (1)

Krumelur
Krumelur

Reputation: 32497

I was so sure that I was looking for a way to alias package names that I missed the obvious 'Provides' section.

Provides: foo bar

solves the issue.

Upvotes: 1

Related Questions