-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
43 lines (41 loc) · 1.29 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
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Marketplace::Rakuten',
AUTHOR => q{Marco Pessotto <[email protected]>},
VERSION_FROM => 'lib/Marketplace/Rakuten.pm',
ABSTRACT_FROM => 'lib/Marketplace/Rakuten.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Moo' => 0,
'namespace::clean' => 0,
'MooX::Types::MooseLike' => 0,
# first version providing "www_form_urlencode" method
'HTTP::Tiny' => 0.014,
'XML::LibXML::Simple' => 0,
'DateTime' => 0,
'DateTime::Format::ISO8601' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Marketplace-Rakuten-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/interchange/Marketplace-Rakuten.git',
bugtracker => 'https://github.com/interchange/Marketplace-Rakuten/issues',
IRC => 'irc://irc.freenode.net/#interchange',
},
},
);
# Local Variables:
# cperl-indent-parens-as-block: 1
# End: