Normally this should work
package ia32-libs do
action :install
end
... but I am getting that the package is no longer present in Ubuntu 12.04 repositories for a 64bit system.
So I found this thread on AskUbuntu that suggest to append :i386
to the package name.
package "ia32-libs:i386" do
action :install
end
... but ia32-libs:i386
has no candidate in the apt-cache
any suggestions?