Help for Perl module bundle.

I have a file of lot of perl modules in tar.gz format. They all have dependency on each other for installation.
Can anybody guide me for making a bundle so that I can run it in one go and install all the modules.
Please note that I can't use CPAN as we don't have Internet connectivity on our server.

If the modules are pure Perl, simply extract them in $HOME/perl-lib and add $HOME/perl-lib to the PERL5LIB environment variable, or if you wish to provide a site wide install, as root extract them all under /usr/lib/perl5/site_perl/perl${VERSION}.

1 Like

Thanks a lot!
I will do that, but I am still amused to make a bundle file for same,

---------- Post updated at 11:05 PM ---------- Previous update was at 03:59 AM ----------

Can anybody just update how a bundle file can be made.

the standard way is to use h2xs to create an installable package.

1 Like