Module::Template::Setup::Licenses - licenses and their respective descriptions


Module-Template-Setup documentation Contained in the Module-Template-Setup distribution.

Index


Code Index:

NAME

Top

Module::Template::Setup::Licenses - licenses and their respective descriptions

VERSION

Top

Module::Template::Setup::License 0.01

SEE ALSO

Top

Module::Build
Module::Template::Setup

AUTHOR

Top

Jonas B. Nielsen (jonasbn) - <jonasbn@cpan.org>

COPYRIGHT

Top


Module-Template-Setup documentation Contained in the Module-Template-Setup distribution.

package Module::Template::Setup::Licenses;

# $Id: Licenses.pm,v 1.1 2004/05/15 14:29:17 jonasbn Exp $

use strict;
require Exporter;
use vars qw($VERSION @EXPORT_OK @ISA %licenses);

$VERSION = '0.01';
@ISA = qw(Exporter);
@EXPORT_OK = qw(%licenses);

%licenses = (
gpl => 
"The distribution is distributed under the terms of the Gnu General
Public License\n(http://www.opensource.org/licenses/gpl-license.php).",
lgpl => 
"The distribution is distributed under the terms of the Gnu Lesser
General Public
License\n(http://www.opensource.org/licenses/lgpl-license.php).",
artistic => 
"The distribution is licensed under the Artistic License, as specified
by the Artistic file in the standard perl distribution\n(http://www.perl.com/language/misc/Artistic.html).",
bsd => 
"The distribution is licensed under the BSD
License\n(http://www.opensource.org/licenses/bsd-license.php)."
);

1;

__END__