Skip to content

Commit

Permalink
Ready to upload to CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
lstein committed Dec 9, 2008
1 parent d86b39e commit 3b240c0
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 962 deletions.
32 changes: 32 additions & 0 deletions Build.PL
@@ -0,0 +1,32 @@
#!/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::Perl' => 0,
'GD' => 2.30,
'Text::ParseWords' => 0,
},
recommends => {
'GD::SVG' => 0,
},
script_files => ['scripts/contig_draw.pl',
'scripts/feature_draw.pl',
'scripts/frend.pl',
'scripts/search_overview.pl',
'scripts/render_msa.pl',
],
create_makefile_pl => 'passthru',
build_class => 'Module::Build',
);


$build->create_build_script;
exit 0;
1 change: 1 addition & 0 deletions MANIFEST
@@ -1,4 +1,5 @@
Build.PL
Makefile.PL
Changes
DISCLAIMER.txt
docs/README
Expand Down
7 changes: 7 additions & 0 deletions Makefile.PL
@@ -0,0 +1,7 @@
#!/usr/bin/perl

use Module::Build::Compat;
Module::Build::Compat->run_build_pl(args => \@ARGV);
Module::Build::Compat->write_makefile(build_class=>'Module::Build');

exit 0;
3 changes: 3 additions & 0 deletions README
Expand Up @@ -90,6 +90,9 @@ The other style generates a graphical key at the bottom of the image.
Note that this modules depends on Bio::Perl, GD and the
Text::Parsewords module.

A good tutorial on this module can be found at
http://www.bioperl.org/wiki/HOWTO:Graphics.

BUILDING AND INSTALLING

From the directory in which this README file is located:
Expand Down

0 comments on commit 3b240c0

Please sign in to comment.