http://www.perlmonks.org?node_id=474476


in reply to Re: How do you manage module deployment?
in thread How do you manage module deployment?

pretty easy to create a zipped tarball from your source.
system ("tar -zc /sourcedir > /mytarball.tar.gz");
or you can use the Archive:: cpan modules

Sounds like a disk image of your perl installation might be handy as well. Or maybe you can create your own rpm's for apt or yum. Apache ant build scripts are also great for copy/moving files around Ant.