I have a machine using some Perl programs with personnal packages, theses packages are in /home/user/libs/ , there are PM files
the package program start like this :
package Connexion;
use vars qw(@ISA @EXPORT);
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw($prompt_foundry $variable);
the mains programs use package like this : use Connexion
So I want to now how this packages are installed (something like path variable ?? or how), how to list theme all, and how to install theme in new machine who already has Perl.
Thank you in advance.