how do I link PerlIO Perl package without “installing it”
问题 I'm trying to add the PerlIO::eol package as part of my project without installing it, this way all dependencies can be packaged with my script without having to reinstall them on each machine. How can I do it for PerlIO::eol I don't understand the structure and where the important files are 回答1: Create a subdirectory inc and move an unpacked PerlIO-eol distro there. Then, use something like this in your project's Build.PL : use Config qw(%config); use Module::Build qw(); my $build = Module: