changed
[urisagit/Perl-Docs.git] / Makefile.PL
CommitLineData
99916a19 1use strict ;
635c7876 2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
99916a19 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 },
635c7876 22);