On Fri, Aug 31, 2012 at 3:29 PM, David Christensen <dpchr...@holgerdanske.com> wrote: > module-authors: > > I am working on a modulino [1] and would like to use ExtUtils::MakeMaker to > generate a Makefile such that "make" (or "make all") copies the module file > (lib/MyModulino.pm) to a script file (perl-bin/mymodulino.pl) and sets the > execute bit. > > > Any suggestions?
Why do you want to do this? I can see absolutely no reason why this would be preferable over a traditional module/script split *in a CPAN distribution* (which doesn't mean they can't be useful in other situations). The system does not look for executables in the same place as perl looks for modules, this sounds to me like you're only making things more complicated for yourself. Leon