或者 RPM 中的依赖项?
我可以生成一个 RPM 包,其中以择一的方式列出多个依赖项吗?我问的原因是,我的应用程序需要可扩展的 Mincho 风格的日语字体,而且看起来不同风格的基于 RPM 的 Linux 提供了不同的字体,没有共同点。我不想为不同的发行版创建不同的 RPM。
Can I produce an RPM package where several dependencies are listed in a choose-one-from-those manner? Reason why I'm asking, my app needs a scalable Mincho-style Japanese font, and it looks like different flavors of RPM-based Linux provide different ones, with no common denominator. I don't want to create different RPMs for different distros.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是虚拟供应的用途。例如,sendmail 包有一个“
Provides: smtp-daemon
”,postfix 包也是如此。 cron 包又只需要一个“需要:smtp-daemon
”。这就是 OR 的实现方式。That is what virtual provides are for. For example, the sendmail package has a "
Provides: smtp-daemon
", as does the postfix package. The cron package in turn only needs a "Requires: smtp-daemon
". And that's how OR is implemented.