-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile.PL
32 lines (30 loc) · 1.11 KB
/
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 ExtUtils::MakeMaker;
require 5.006;
my $mm_ver = ExtUtils::MakeMaker->VERSION;
WriteMakefile(
NAME => 'List::Compare',
AUTHOR => 'James E Keenan (jkeenan@cpan.org)',
VERSION_FROM => 'lib/List/Compare.pm',
ABSTRACT_FROM => 'lib/List/Compare.pm',
( $mm_ver < 6.63_03 ? 'BUILD_REQUIRES' : 'TEST_REQUIRES' ) => {
'Capture::Tiny' => 0,
'Test::Simple' => 0.10,
},
LICENSE => "perl",
($mm_ver < 6.46 ? () : (META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 1,
resources => {
homepage => 'http://thenceforward.net/perl/modules/List-Compare/',
repository => {
url => 'https://github.com/jkeenan/list-compare.git',
web => 'https://github.com/jkeenan/list-compare',
type => 'git',
},
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=List-Compare',
mailto => 'bug-list-compare@rt.cpan.org',
},
},
})),
);