-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (24 loc) · 828 Bytes
/
Makefile.PL
File metadata and controls
26 lines (24 loc) · 828 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
#Makefile.PL version 1.1
use 5.010001;
use ExtUtils::MakeMaker;
my @scripts = qw(vcfSampleCompare.pl);
WriteMakefile
(
NAME => 'vcfSampleCompare',
($[ >= 5.005 ? #Add these new keywords supported since 5.005
(AUTHOR => 'Robert W. Leach (rleach@princeton.edu)',
ABSTRACT_FROM => 'src/vcfSampleCompare.pl') : ()),
VERSION_FROM => 'src/vcfSampleCompare.pl', # finds $VERSION
PREREQ_PM => {'Getopt::Long' => 2.38,
'File::Glob' => 1.17,
'strict' => 1.07,
'warnings' => 1.13},
EXE_FILES => [ map { "src/$_" } @scripts ],
TEST_REQUIRES => {
'Test::More' => 0.98,
'strict' => 1.07,
'warnings' => 1.13,
'lib' => 0.63,
'File::Basename' => 2.84,
},
);