sub License_LooseLips
{
my %license;
$license{COPYRIGHT} = <<EOFCOPYRIGHT;
This program is licensed under the...
Loose Lips License
The full text of the license can be found in the
LICENSE file included with this module.
EOFCOPYRIGHT
$license{LICENSETEXT} = <<EOFLICENSETEXT;
Loose Lips License
Version 1.0
Copyright (c) 2002 ###organization###. All rights reserved.
This software is the intellectual property of ###organization###. Its
contents are a trade secret and are not to be shared with anyone outside
the organization.
Remember, "Loose lips sink ships."
EOFLICENSETEXT
return (\%license);
}
|