I donβt know exactly how Dist :: Zilla works, but the resulting archive should be compatible with what ExtUtils :: MakeMaker creates.
When creating a module with module-starter it creates a module template using ExtUtils::MakeMaker . It creates several files and directories, such as the lib directory where your module lives, and the t directories in which your tests live.
One thing that it does not create is the bin directory. However, if you create the bin directory and put the files in this directory (for example, Perl scripts), these files will be installed in the bin in your Perl distribution and linked to /usr/local/bin or /usr/bin . good place for your scripts?
David W.
source share