Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to install Crypt::DES in my Linux account which I don't have the root. Previously, I will install Perl modules by 'perl Makefile.PL && make', then copy the resulting .pm file to a place(i.e. /path/to/mylib) that I can declare later in my Perl program with
use lib qw /path/to/mylib ;
But after I finish 'make', some other files besides the DES.pm are generated and can not neglect, i.e.blib/arch/auto/Crypt/DES/DES.dll blib/arch/auto/Crypt/DES/libDES.dll.a blib/arch/auto/Crypt/DES/libDES.bs
I know with 'configure', I can use --prefix to specify the installation destination, but how can I do the same with perl 'Makefile.PL', given that I dont have the root to copy files outside of my own home directory..
Thanks for your help
Hao...:-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Install Perl Module from the source
by Gangabass (Vicar) on Oct 18, 2007 at 01:59 UTC | |
by Anonymous Monk on Oct 18, 2007 at 02:22 UTC | |
|
Re: Install Perl Module from the source
by Prof Vince (Friar) on Oct 18, 2007 at 09:56 UTC | |
|
Re: Install Perl Module from the source
by Anonymous Monk on Oct 18, 2007 at 10:44 UTC |