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

use ExtUtils::MakeMaker;

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

1;