This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
install useful Regexp::CARP_TRACE from Carp
[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                 "Exporter" => 0,
12                 "IPC::Open3" => "1.0103",
13                 "Test::More" => 0,
14                 "strict" => 0,
15                 "warnings" => 0,
16         },
17         LICENSE => "perl",
18         INSTALLDIRS => "$]" < 5.011 ? "perl" : "site",
19 );
20
21 1;