-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
executable file
·35 lines (32 loc) · 1.1 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
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %parms = (
'NAME' => 'Bio::Monophylizer', # EU::MM apparently now wants Package::Name
'AUTHOR' => 'Rutger Vos',
'PL_FILES' => {},
'EXE_FILES' => [ 'script/monophylizer.pl' ],
'VERSION_FROM' => 'script/monophylizer.pl',
'PREREQ_PM' => { 'Bio::Phylo' => 0.58 },
'LICENSE' => 'perl',
'ABSTRACT' => 'Script to assess monophyly in BOLD trees',
'clean' => {},
'dist' => {
'COMPRESS' => 'gzip -9f',
'SUFFIX' => 'gz',
'TARFLAGS' => '-c -v -f',
},
);
if ( $ExtUtils::MakeMaker::VERSION ge '6.46' ) {
$parms{'META_MERGE'} = {
'resources' => {
'homepage' => 'http://biophylo.blogspot.com/',
'bugtracker' => 'https://github.com/naturalis/monophylizer/issues',
'repository' => 'git://github.com/naturalis/monophylizer.git',
'license' => 'http://dev.perl.org/licenses/',
'MailingList' => 'mailto:bio-phylo@googlegroups.com',
},
};
}
WriteMakefile( %parms );