in reply to Another Toolchain question

When I put a module together, there are two things that I double-check. First, I make sure that it's in the Makefile.PL:
( ExtUtils::MakeMaker->VERSION() gt '5.50' ? ('LICENSE' => 'perl') : () ),
Second, before I run make dist, I check the Meta.yml. The license must be specified there:
ExtUtils::MakeMaker: 6.42 distribution_type: module generated_by: 'Module::Install version 0.91' license: perl
Then run make dist

Replies are listed 'Best First'.
Re^2: Another Toolchain question
by John M. Dlugosz (Monsignor) on Apr 05, 2011 at 05:54 UTC
    This Makefile.PL ends with a call to WriteAll. I don't see where to put such arguments.
        Yes, that appears to be what it's using. Thanks for the pointer.

        However, the docs you pointed me to doesn't have "commercial" as a choice!