in reply to Re: Re: install perl module into other directory.
in thread install perl module into other directory.

Ah, it is becoming clearer what you want. So you are interested in doing an install on a development box, and replicating the install onto other machines. In the Unix world, tar is your friend. It can reproduce whole directory trees in one go. The same principle applies in a windows environment, as the likes of winzip can handle tar archives. Try the following:
cd mkdir newlib cd (package build directory) perl Makefile.PL LIB=~/newlib make make test make install cd ~/newlib tar cvf ../myDistro.tar * cd .. gzip myDistro.tar
Now on the target machine, use gunzip and tar xvf to put the files in place.

This will work if the machine architectures are the same, or if the package is pure perl.

Replies are listed 'Best First'.
Re: Re: Re: Re: install perl module into other directory.
by perlisfun (Sexton) on Aug 15, 2003 at 14:10 UTC
    Thank you very much. This idea is not only pratical and each solution. PerlIsFun