forked from garu/WWW-Correios-SRO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
26 lines (25 loc) · 851 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'WWW::Correios::SRO',
AUTHOR => q{Breno G. de Oliveira <[email protected]>},
VERSION_FROM => 'lib/WWW/Correios/SRO.pm',
ABSTRACT_FROM => 'lib/WWW/Correios/SRO.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0.88,
'parent' => 0,
'Exporter' => 0,
'LWP::UserAgent' => 0,
'HTML::TreeBuilder' => 0,
'Class::XSAccessor' => 1.05,
'URI::file' => 0,
'utf8' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'WWW-Correios-SRO-*' },
);