in reply to SOAP::Lite on Linux

If at all possible, use the Unix system's package management systems; apt, yum and ports are examples.

If you must go outside their package management systems, use the Perl Archive Toolkit to create package "bundles".

It is possible to programatically drive the CPAN module to install packages from source, but I wouldn't recommend it.

-David

Replies are listed 'Best First'.
Re^2: SOAP::Lite on Linux
by jettero (Monsignor) on Nov 14, 2007 at 11:59 UTC

    ... CPAN module to install packages from source, but I wouldn't recommend it.

    I'm completely floored by that. Is it a common sentiment?

    One of the first things I do on any given desktop platform is hit the cpan shell and start installing. Usually the stuff in the system's local packages is very out of date, since the maintainers rarely enjoy maintaining 300 module packages. So they don't do it very often.

    -Paul

      The CPAN shell is fine; so therefore is the module.

      I'm only arguing against programatically driving the CPAN module for the purpose of automated installation.

      There's a bunch of things that can go wrong that are better left to either a live operator, or the system's package management tools.

      -David