-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
32 lines (30 loc) · 928 Bytes
/
Makefile.PL
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
26
27
28
29
30
31
32
use strict;
use warnings;
use ExtUtils::MakeMaker;
eval "use 5.006";
if ( my $error = $@ ) {
warn $error;
exit 0;
}
WriteMakefile(
NAME => 'Test::Differences',
AUTHOR => 'David Cantrell <david@cantrell.org.uk>',
VERSION_FROM => 'lib/Test/Differences.pm',
ABSTRACT_FROM => 'lib/Test/Differences.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => '0.88', # done_testing
'Text::Diff' => 1.43,
'Data::Dumper' => 2.126,
'Capture::Tiny' => 0.24,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Test-Differences-*' },
META_MERGE => {
license => [ qw(artistic_1 gpl_1) ],
resources => {
repository => 'https://github.com/DrHyde/Test-Differences',
bugtracker => 'https://github.com/DrHyde/Test-Differences/issues',
},
},
);