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