-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·42 lines (39 loc) · 1.25 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
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %parms = (
'NAME' => 'Bio::Phylo::Forest::DBTree',
'AUTHOR' => 'Rutger Vos',
'EXE_FILES' => [
'script/megatree-loader',
'script/megatree-ncbi-loader',
'script/megatree-phylotree-loader',
'script/megatree-pruner'
],
'VERSION_FROM' => 'lib/Bio/Phylo/Forest/DBTree.pm',
'LICENSE' => 'perl',
'ABSTRACT' => 'DBIx::Class-backed, Bio::Phylo-like API for large phylogenies',
'PREREQ_PM' => {
'DBIx::Class' => '0',
'Bio::Phylo' => '0.52',
'DBD::SQLite' => '0',
},
'dist' => {
'COMPRESS' => 'gzip -9f',
'SUFFIX' => 'gz',
'TARFLAGS' => '--format=ustar -c -v -f',
},
);
if ( $ExtUtils::MakeMaker::VERSION ge '6.46' ) {
$parms{META_MERGE} = {
resources => {
homepage => 'http://biophylo.blogspot.com/',
bugtracker => 'https://github.com/rvosa/bio-phylo-forest-dbtree/issues',
repository => 'git://github.com/rvosa/bio-phylo-forest-dbtree.git',
license => 'http://dev.perl.org/licenses/',
MailingList => 'mailto:bio-phylo@googlegroups.com',
},
};
}
WriteMakefile( %parms );