-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.PL
28 lines (27 loc) · 997 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
######################################################################
# Makefile.PL for Data::Throttler
# 2007, Mike Schilli <[email protected]>
######################################################################
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
license => [ 'perl_5' ],
resources => {
repository => 'http://github.com/mschilli/data-throttler-perl',
},
}
};
WriteMakefile(
'NAME' => 'Data::Throttler',
'VERSION_FROM' => 'Throttler.pm', # finds $VERSION
'PREREQ_PM' => {
Set::IntSpan => 0,
Log::Log4perl => 1.0,
YAML => 0.62,
# (optional) Text::ASCIITable => 0,
}, # e.g., Module::Name => 1.1
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'Throttler.pm',
AUTHOR => 'Mike Schilli <[email protected]>') : ()),
);