Fix docs for water/needle, match more recent versions of EMBOSS
[bioperl-run.git] / Build.PL
blobbfa5b9bcccc409e643740704cb3e91c2f4582972
1 #!/usr/bin/perl -w
3 # This is a Module::Build script for BioPerl-Run installation.
4 # See http://search.cpan.org/~kwilliams/Module-Build/lib/Module/Build.pm
6 use strict;
7 use warnings;
8 use Module::Build;
10 my $build = Module::Build->subclass(
11 code => q(
13 # add dist version to META files
14 sub get_metadata {
15 my ($self, %args) = @_;
16 my $metadata = $self->SUPER::get_metadata(%args);
18 if (exists $metadata->{provides}) {
19 my $ver = $self->dist_version;
20 my $pkgs = $metadata->{provides};
21 for my $p (keys %{$pkgs}) {
22 if (!exists($pkgs->{$p}->{'version'})) {
23 $pkgs->{$p}->{'version'} = $ver;
24 } else {
25 $self->log_warn("Note: Module $p has a set version: ".$pkgs->{$p}->{'version'}."\n")
26 if $pkgs->{$p}->{'version'} ne $ver;
30 return $metadata;
33 )->new(
34 dist_name => 'BioPerl-Run',
35 dist_version => '1.007001',
36 module_name => 'Bio::Run',
37 dist_author => 'BioPerl Team <bioperl-l@bioperl.org>',
38 dist_abstract => 'BioPerl-Run - wrapper toolkit',
39 license => 'perl',
40 config_requires => {
41 'Module::Build' => 0,
43 build_requires => {
44 'Bio::Root::Version' => '1.007000',
45 'Bio::Root::Test' => 0,
47 requires => {
48 'perl' => '5.6.1',
49 'Bio::Root::Version' => '1.007000',
50 'Bio::Root::Root' => 0,
52 recommends => {
53 'Algorithm::Diff' => 0, # generating consensus protein family descriptions: Bio::Tools::Run::TribeMCL
54 'IPC::Run' => 0, # Glimmer and Genemark application wrappers: Bio::Tools::Run::Glimmer Bio::Tools::Run::Genemark
55 'IO::String' => 0, # generating Bio::Tree::Tree from strings: Bio::Tools::Run::Phylo::Phylip::Consense
56 'XML::Twig' => 0, # processing XML data: Bio::Tools::Run::EMBOSSacd
57 'File::Sort' => 0, # BEDTools
58 'Config::Any' => 0, # MCS, Match
59 #'SOAP::Lite' => 0.716, # A bug that affects SoapEU-unit.t tests was fixed in this version (many levels deep object throws error)
61 get_options => {
62 accept => { },
63 network => { },
64 install_scripts => { }
66 auto_features => {
67 Network => {
68 description => "Enable tests that need an internet connection",
69 requires => { 'LWP::UserAgent' => 0 }
72 dynamic_config => 1,
73 #create_makefile_pl => 'passthrough'
76 my $accept = $build->args->{accept};
78 # Optionally have script files installed.
79 if ($build->args('install_scripts') or $accept ? 0 : $build->y_n("Install scripts? y/n", 'n')) {
80 my $files = $build->_find_file_by_type('PLS', 'scripts');
82 my $script_build = File::Spec->catdir($build->blib, 'script');
84 my @tobp;
85 while (my ($file, $dest) = each %$files) {
86 $dest = 'bp_'.File::Basename::basename($dest);
87 $dest =~ s/PLS$/pl/;
88 $dest = File::Spec->catfile($script_build, $dest);
89 $build->copy_if_modified(from => $file, to => $dest);
90 push @tobp, $dest;
93 $build->script_files(\@tobp);
96 # Do network tests?
97 my $do_network_tests = 0;
98 if ($build->args('network')) {
99 $do_network_tests = $build->feature('Network');
101 elsif ($build->feature('Network')) {
102 $do_network_tests = $accept ? 0 : $build->y_n("Do you want to run tests that require connection to servers across the internet\n(likely to cause some failures)? y/n", 'n');
105 if ($do_network_tests) {
106 $build->notes(network => 1);
107 $build->log_info(" - will run internet-requiring tests\n");
108 my $use_email = $build->y_n("Do you want to run tests requiring a valid email address? y/n",'n');
109 if ($use_email) {
110 my $address = $build->prompt("Enter email address:");
111 $build->notes(email => $address);
114 else {
115 $build->notes(network => 0);
116 $build->log_info(" - will not run internet-requiring tests\n");
119 # Create the build script and exit
120 $build->create_build_script;