-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
30 lines (29 loc) · 950 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Test::Easy',
AUTHOR => 'Belden Lyman <[email protected]>',
VERSION_FROM => 'lib/Test/Easy.pm',
ABSTRACT_FROM => 'lib/Test/Easy.pm',
PL_FILES => {},
PREREQ_PM => {
'Data::Denter' => 0, # for deep_equal and deep_ok
'Data::Difflet' => 0.06, # for deep_equal and deep_ok
'Functional::Utility' => 1.02,
'Hash::MostUtils' => 1.05,
'Scalar::Util' => 0,
'Test::More' => 0,
'Test::Resub' => 0,
},
META_MERGE => {
resources => {
bugtracker => 'https://github.com/belden/perl-test-easy/issues',
homepage => 'https://github.com/belden/perl-test-easy',
repository => 'git://github.com/belden/perl-test-easy.git',
},
},
LICENSE => 'perl',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Test-Easy-*' },
);