-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Committing initial version of JCVI::Translator for migration
git-svn-id: https://jcvi-tools.svn.sourceforge.net/svnroot/jcvi-tools/JCVI-Translator/trunk@1 a16988d2-67c9-4db9-a897-0603be59747b
- Loading branch information
kgalinsky
committed
Oct 28, 2009
0 parents
commit efda1fe
Showing
10 changed files
with
1,915 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Revision history for JCVI-Translator | ||
|
||
0.01 Date/time | ||
First version, released on an unsuspecting world. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Changes | ||
MANIFEST | ||
META.yml # Will be created by "make dist" | ||
Makefile.PL | ||
README | ||
lib/JCVI/Translator.pm | ||
t/00-load.t | ||
t/boilerplate.t | ||
t/pod-coverage.t | ||
t/pod.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use strict; | ||
use warnings; | ||
use ExtUtils::MakeMaker; | ||
|
||
WriteMakefile( | ||
NAME => 'JCVI::Translator', | ||
AUTHOR => 'Kevin Galinsky <[email protected]>', | ||
VERSION_FROM => 'lib/JCVI/Translator.pm', | ||
ABSTRACT_FROM => 'lib/JCVI/Translator.pm', | ||
PL_FILES => {}, | ||
PREREQ_PM => { | ||
'Test::More' => 0, | ||
}, | ||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, | ||
clean => { FILES => 'JCVI-Translator-*' }, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
JCVI-Translator | ||
|
||
The README is used to introduce the module and provide instructions on | ||
how to install the module, any machine dependencies it may have (for | ||
example C compilers and installed libraries) and any other information | ||
that should be provided before the module is installed. | ||
|
||
A README file is required for CPAN modules since CPAN extracts the README | ||
file from a module distribution so that people browsing the archive | ||
can use it get an idea of the modules uses. It is usually a good idea | ||
to provide version information here so that people can decide whether | ||
fixes for the module are worth downloading. | ||
|
||
INSTALLATION | ||
|
||
To install this module, run the following commands: | ||
|
||
perl Makefile.PL | ||
make | ||
make test | ||
make install | ||
|
||
|
||
SUPPORT AND DOCUMENTATION | ||
|
||
After installing, you can find documentation for this module with the perldoc command. | ||
|
||
perldoc JCVI::Translator | ||
|
||
You can also look for information at: | ||
|
||
Search CPAN | ||
http://search.cpan.org/dist/JCVI-Translator | ||
|
||
CPAN Request Tracker: | ||
http://rt.cpan.org/NoAuth/Bugs.html?Dist=JCVI-Translator | ||
|
||
AnnoCPAN, annotated CPAN documentation: | ||
http://annocpan.org/dist/JCVI-Translator | ||
|
||
CPAN Ratings: | ||
http://cpanratings.perl.org/d/JCVI-Translator | ||
|
||
COPYRIGHT AND LICENCE | ||
|
||
Copyright (C) 2008 Kevin Galinsky | ||
|
||
This program is free software; you can redistribute it and/or modify it | ||
under the same terms as Perl itself. |
Oops, something went wrong.