rpmbuild - rpm spec file - How to specify multiple package archtypes in the requires -
what have in spec requires: lftp zsh boost db4 db4-devel
what need in spec requires: lftp zsh boost db4 db4-devel db4-cxx.i686 db4-devel.i686
but x.i686 doesn't work. when try install package yum, says error: package: blah requires: db4-devel.i686 db4-cxx.i686
is there way install both x86_64 , i686 packages using requires: in spec file?
too late, i'll leave here:
www.rpm.org/wiki/packagerdocs/archdependencies
so, should looks like:
requires: db4-devel(x86-32) db4-cxx(x86-32)
Comments
Post a Comment