cleanup
[urisagit/Perl-Docs.git] / Makefile.PL
1 use strict ;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6         'NAME'          => 'File::Slurp',
7         'LICENSE'       => 'perl',
8         'AUTHOR'        => 'Uri Guttman <uri@stemsystems.com>',
9         'VERSION_FROM'  => 'lib/File/Slurp.pm',
10         'ABSTRACT_FROM' => 'lib/File/Slurp.pm',
11         'META_MERGE'    => {
12                 requires        => {
13                         perl    => 5.004,
14                 },
15         },
16         'PREREQ_PM'     => {
17                 'Carp'      => 0,
18                 'Exporter'  => 0,
19                 'Fcntl'     => 0,
20                 'POSIX'     => 0,
21         },
22 );