I have an application that I deploy on both Linux (Red Hat) and Unix (Solaris). My application installs itself using the built in Perl, and from then creates its own local Perl (new user).
I would like to know what is the best way to deploy Curses::UI
? Currently I install other modules by just copying them to my local perl lib
folder, but these are pure Perl modules that don't depend on C libraries (.so shared objects, XS, etc.).
Also will I have to compile libncurses
for each platform beforehand?
NOTE: The computer doesnt have network connectivity, hence I cant use the CPAN module.