-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
55 lines (54 loc) · 1.72 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Lim::Plugin::OpenDNSSEC',
AUTHOR => q{Jerry Lundström <lundstrom.jerry@gmail.com>},
VERSION_FROM => 'lib/Lim/Plugin/OpenDNSSEC.pm',
ABSTRACT_FROM => 'lib/Lim/Plugin/OpenDNSSEC.pm',
(! eval { ExtUtils::MakeMaker->VERSION(6.3002) } ? () :
(LICENSE => 'perl')
),
(eval { ExtUtils::MakeMaker->VERSION(6.5503) } ?
(
BUILD_REQUIRES => {
'Test::More' => 0,
'common::sense' => 3,
'Digest::SHA' => 5,
'Getopt::Long' => 2,
'Pod::Usage' => 1,
'Lim' => 0.16,
'Scalar::Util' => 1
},
PREREQ_PM => {
'common::sense' => 3,
'Digest::SHA' => 5,
'Getopt::Long' => 2,
'Pod::Usage' => 1,
'Lim' => 0.16,
'Scalar::Util' => 1
}
) : (
PREREQ_PM => {
'Test::More' => 0,
'common::sense' => 3,
'Digest::SHA' => 5,
'Getopt::Long' => 2,
'Pod::Usage' => 1,
'Lim' => 0.16,
'Scalar::Util' => 1
}
)),
(! eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () :
(META_ADD => {
resources => {
homepage => 'http://github.com/jelu/lim-plugin-opendnssec/wiki',
repository => 'http://github.com/jelu/lim-plugin-opendnssec',
bugtracker => 'http://github.com/jelu/lim-plugin-opendnssec/issues',
},
})
),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Lim-Plugin-OpenDNSSEC-*' },
);