move backend interface modules into PLP::Backend:: namespace
[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  => 'PLP.pm',
12         PREREQ_PM     => {},
13         ABSTRACT_FROM => 'PLP.pm',
14         (LICENSE      => 'public domain') x ($ExtUtils::MakeMaker::VERSION > 6.30),
15         AUTHOR        => 'Mischa POSLAWSKY <perl@shiar.org>',
16 );