This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for b464e2b7c8ad
[perl5.git] / dist / Carp / Makefile.PL
1 use warnings;
2 use strict;
3
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7         NAME => "Carp",
8         VERSION_FROM => "lib/Carp.pm",
9         ABSTRACT_FROM => "lib/Carp.pm",
10         PREREQ_PM => {
11                 "Config" => 0,
12                 "Exporter" => 0,
13                 "ExtUtils::MakeMaker" => 0,
14                 "IPC::Open3" => "1.0103",
15                 "Test::More" => 0,
16                 "overload" => 0,
17                 "parent" => 0,
18                 "strict" => 0,
19                 "warnings" => 0,
20         },
21         LICENSE => "perl",
22         INSTALLDIRS => "$]" < 5.011 ? "perl" : "site",
23 );
24
25 1;