I've got perlbrew
installed on OS X fine, and can install Perl modules from CPAN, using cpanm
no problem.
But, now I'm attempting to install a Perl module provided from a software vendor, and that PM is not on CPAN - you download it from their application and install it "locally".
How can I do this with perlbrew
?
The documentation states to do a direct install, download the tar.gz file, extract it, then:
$ cd Infoblox-xxxxxxx/
$ perl Makefile.PL
... misc output here
$ make
... misc output here
$ make install
... misc output here
But if I do this, I guess it will install it for the OS Perl version, not my perlbrew
install.
The other option mentioned is to create a local CPAN site and add the appliance URL (to grab the Perl module) to the list of sites. Is this possible with perlbrew
?