-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
41 lines (40 loc) · 916 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
31
32
33
34
35
36
37
38
39
40
41
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $pm = 'lib/WWW/LinkRot.pm';
my $pod = 'lib/WWW/LinkRot.pod';
my $github = 'github.com/benkasminbullock/www-linkrot';
my $repo = "https://$github";
WriteMakefile (
NAME => 'WWW::LinkRot',
VERSION_FROM => $pm,
ABSTRACT_FROM => $pod,
AUTHOR => 'Ben Bullock <[email protected]>',
LICENSE => 'perl',
PREREQ_PM => {
'LWP::UserAgent' => '6.53',
'HTML::Make' => '0.05',
'HTML::Make::Page' => '0.01',
'File::Slurper' => '0.012',
'JSON::Create' => '0.32',
'JSON::Parse' => '0.61',
'Convert::Moji' => '0.10',
},
META_MERGE => {
'meta-spec' => {
version => 2,
},
resources => {
repository => {
type => 'git',
url => "git://$github.git",
web => $repo,
},
bugtracker => {
web => "$repo/issues",
},
# homepage => 'http://',
},
},
MIN_PERL_VERSION => '5.006001',
);