Hi,
I want to build a single RPM that has more than one software in it and a different name from them.
Let's imagine for the sake of example that i want to make an RPM called databases.rpm that installs both MySQL and Postgres.
How can i do this with a single spec file ?
I've googled for an hour or two and found no info about this issue.
Can someone enlighten me, please ?
WarmRegards, Mário Gamito
2007/3/2, Mário Gamito :
Hi,
I want to build a single RPM that has more than one software in it and a different name from them.
Let's imagine for the sake of example that i want to make an RPM called databases.rpm that installs both MySQL and Postgres.
How can i do this with a single spec file ?
I've googled for an hour or two and found no info about this issue.
Can someone enlighten me, please ?
Hello,
The best way to do that is to create an empty RPM that depends on Mysql and Postgres. Of course using that method you will have to provide more than one rpm ..
Mário Gamito wrote:
Hi,
I want to build a single RPM that has more than one software in it and a different name from them.
Let's imagine for the sake of example that i want to make an RPM called databases.rpm that installs both MySQL and Postgres.
How can i do this with a single spec file ?
Requires: package1 Requires: package2 ...