add license to Makefile definitions
authorMischa POSLAWSKY <perl@shiar.org>
Sun, 16 Mar 2008 15:26:39 +0000 (16:26 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Mon, 17 Mar 2008 19:52:26 +0000 (20:52 +0100)
As recommended by Kwalitee indicator metayml_has_license.
Currently we specify public domain even though it's not listed in
Module::Build::Api and arguably not a valid license at all. Maybe change
our license later, or classify as 'unrestricted'.

Makefile.PL

index e452030117c0c8fbcb40fd9f4c8a7a4c47cbb981..cdc50273d106fa0333f43fb2497871dd8c75391e 100644 (file)
@@ -11,5 +11,6 @@ WriteMakefile(
        VERSION_FROM  => 'PLP.pm',
        PREREQ_PM     => {},
        ABSTRACT_FROM => 'PLP.pm',
+       (LICENSE      => 'public domain') x ($ExtUtils::MakeMaker::VERSION > 6.30),
        AUTHOR        => 'Mischa POSLAWSKY <perl@shiar.org>',
 );