| Module-Template-Setup documentation | Contained in the Module-Template-Setup distribution. |
Module::Template::Setup::Licenses - licenses and their respective descriptions
Module::Template::Setup::License 0.01
Jonas B. Nielsen (jonasbn) - <jonasbn@cpan.org>
Module::Template::Setup::License is (C) by Jonas B. Nielsen (jonasbn) 2004
Module::Template::Setup::License is free software and is released under the Artistic License. See http://www.perl.com/language/misc/Artistic.html for details.
| 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__