-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
30 lines (29 loc) · 800 Bytes
/
Makefile.PL
File metadata and controls
30 lines (29 loc) · 800 Bytes
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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DB::Batch',
AUTHOR => q{Chris Becker <clbecker@gmail.com>},
VERSION_FROM => 'lib/DB/Batch.pm',
ABSTRACT_FROM => 'lib/DB/Batch.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'File::Path' => 0,
'Digest::MD5' => 0,
'List::Util' => 0,
'POSIX' => 0,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://github.com/clbecker/DB-Batch',
repository => 'https://github.com/clbecker/DB-Batch',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DB-Batch-*' },
);