Can I add dependencies into .rpm which is already built?
I have .rpm package which is converted from .deb in Ubuntu with alien.
In fedora it needs another dependencies, but I can't find the way 开发者_如何学Pythonto add dependencies.
and I guess I can't edit .spec file of it becuase what I have is only .rpm file.
Any suggestion?
You could make another a dummy package <your-package>-with-<dependency>.
In it's spec file, besides the required tags, also include Requires tags for your package and the dependencies.
This way, when you installed the dummy package, it would force both your package and the dependencies to be installed.
精彩评论