summaryrefslogtreecommitdiff
path: root/dist/Carp/Makefile.PL
blob: e97754c87571c20b0e018e7f96bba15509b118dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use warnings;
use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME => "Carp",
	VERSION_FROM => "lib/Carp.pm",
	ABSTRACT_FROM => "lib/Carp.pm",
	PREREQ_PM => {
		"Config" => 0,
		"Exporter" => 0,
		"ExtUtils::MakeMaker" => 0,
		"IPC::Open3" => "1.0103",
		"Test::More" => "0.47",
		"overload" => 0,
		"parent" => 0.217,
		"strict" => 0,
		"warnings" => 0,
	},
	LICENSE => "perl",
	INSTALLDIRS => "$]" < 5.011 ? "perl" : "site",
);

1;