-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.PL
35 lines (30 loc) · 928 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'WWW::Pusher',
AUTHOR => q{Squeeks <[email protected]>},
VERSION_FROM => 'lib/WWW/Pusher.pm',
ABSTRACT_FROM => 'lib/WWW/Pusher.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'LWP' => 0,
'URI' => 0,
'JSON' => 2.00,
'Digest::MD5' => 2.39,
'Digest::SHA' => 5.48
},
MIN_PERL_VERSION => '5.008',
META_MERGE => {
resources => {
repository => 'http://github.com/squeeks/WWW-Pusher'
}
},
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t'))) },
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WWW::Pusher-*' },
);