v3.25 release
[perl/plp/.git] / Makefile.PL
1 use 5.006;
2 use strict;
3
4 use ExtUtils::MakeMaker;
5
6 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
7 # the contents of the Makefile that is written.
8
9 WriteMakefile(
10         NAME          => 'PLP',
11         VERSION_FROM  => 'lib/PLP.pm',
12         PREREQ_PM     => {},
13         ABSTRACT_FROM => 'lib/PLP.pm',
14         NO_META       => 1,
15         (LICENSE      => 'mit') x ($ExtUtils::MakeMaker::VERSION > 6.30),
16         AUTHOR        => 'Mischa POSLAWSKY <perl@shiar.org>',
17 );