-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
41 lines (40 loc) · 1.28 KB
/
Copy pathMakefile.PL
File metadata and controls
41 lines (40 loc) · 1.28 KB
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
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'WWW::Codeguard',
AUTHOR => q{Rishwanth Yeddula <ryeddula@cpan.org>},
VERSION_FROM => 'lib/WWW/Codeguard.pm',
ABSTRACT_FROM => 'lib/WWW/Codeguard.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'JSON' => 0,
'parent' => 0, # this is core as of 5.10.1, so specifing this for 5.8 installs
},
PREREQ_PM => {
'LWP::UserAgent' => 0,
'JSON' => 0,
'Net::OAuth' => 0,
'HTTP::Request' => 0,
'parent' => 0, # this is core as of 5.10.1, so specifing this for 5.8 installs
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ryeddula/www-codeguard.git',
web => 'https://github.com/ryeddula/www-codeguard',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WWW-Codeguard-*' },
);