-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.PL
More file actions
25 lines (23 loc) · 743 Bytes
/
Makefile.PL
File metadata and controls
25 lines (23 loc) · 743 Bytes
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 5.005;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
use strict;
my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/dns-zoneparse-perl',
},
}
};
WriteMakefile(
'NAME' => 'DNS::ZoneParse',
'VERSION_FROM' => 'lib/DNS/ZoneParse.pm', # finds $VERSION
'PREREQ_PM' => {
Storable => 0.407,
'Test::More' => 0.31,
},
'ABSTRACT_FROM' => 'lib/DNS/ZoneParse.pm',
'AUTHOR' => 'Simon Flack (perl@simonflack.com)',
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
);