in reply to Re^2: Packaging Libraries before deploying my Scripts.
in thread Packaging Libraries before deploying my Scripts.

Yep. If you have some libs you made like:

/home/fred/perl/lib/ModuleName.pm /home/fred/perl/lib/ModuleName/Extend.pm /home/fred/perl/lib/OtherModule.pm
You only need to say:
use lib '/home/fred/perl/lib'; use ModuleName::Extend; use OtherModule;

The way forward always starts with a minimal test.