-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBuild.PL
More file actions
executable file
·40 lines (36 loc) · 1.26 KB
/
Build.PL
File metadata and controls
executable file
·40 lines (36 loc) · 1.26 KB
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
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Bio::Graphics',
license => 'perl',
dist_version_from => 'lib/Bio/Graphics.pm',
dist_author => 'Lincoln Stein <lincoln.stein@oicr.on.ca>',
requires => {
'Bio::Root::Version' => '1.005009001',
'GD' => 2.30,
'CGI' => 0,
'Bio::Coordinate::Pair' => '1.005009001',
'Statistics::Descriptive' => 2.6, # required for Bio::Graphics::Wiggle::Loader
#and tests fail without it
},
recommends => {
'GD::SVG' => 0.32,
'Text::ParseWords' => 3.26, # required for Bio::Graphics::Wiggle::Loader
# 'Bio::SCF' => 1.01, # required for Bio::Graphics::Glyph::trace
},
script_files => ['scripts/contig_draw.pl',
'scripts/feature_draw.pl',
'scripts/frend.pl',
'scripts/glyph_help.pl',
'scripts/search_overview.pl',
'scripts/render_msa.pl',
'scripts/bam_coverage_windows.pl',
'scripts/coverage_to_topoview.pl'
],
create_makefile_pl => 'passthrough',
build_class => 'Module::Build',
);
$build->create_build_script;
exit 0;