Skip to content

Commit

Permalink
fixed up capitalisation, names and version; removed extraneous comments
Browse files Browse the repository at this point in the history
svn path=/bioperl-network/trunk/; revision=15907
  • Loading branch information
sendu committed Aug 9, 2009
1 parent 615747e commit 8b8112d
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions Build.PL
@@ -1,34 +1,31 @@
#!/usr/bin/perl -w

# This is a Module::Build script for bioperl-network installation.
# This is a Module::Build script for BioPerl-Network installation.
# See http://search.cpan.org/~kwilliams/Module-Build/lib/Module/Build.pm

use strict;
use warnings;
use Module::Build;

# Set up the Bio::Root::Build object
my $build = Module::Build->new(
module_name => 'Bio',
dist_name => 'BioPerl-network',
dist_version => '1.006000',
module_name => 'Bio::Network',
dist_name => 'BioPerl-Network',
dist_version => '1.006900',
dist_author => 'BioPerl Team <bioperl-l@bioperl.org>',
dist_abstract => 'BioPerl-network - package for biological networks',
dist_abstract => 'BioPerl-Network - package for biological networks',
license => 'perl',
requires => {'perl' => 5.006001,
'Bio::Root::Version' => 1.006000, # checked above
'Graph' => 0.86 },
requires => {
'perl' => '5.6.1',
'Bio::Root::Version' => '1.006900',
'Graph' => 0.86
},
recommends => {
'XML::Twig' => 3.22, # parsing PSI XML/Bio::Graph::IO::psi
'XML::Twig' => 3.22 # parsing PSI XML/Bio::Graph::IO::psi
},
dynamic_config => 1,
create_makefile_pl => 'passthrough'

#pm_files => {} # modules in Bio are treated as if they were in lib and auto-installed
#script_files => [] # scripts in scripts directory are installed on-demand
);

# Create the build script and exit
$build->create_build_script;

exit;

0 comments on commit 8b8112d

Please sign in to comment.