/usr/share/doc/libmodule-install-autolicense-perl/README is in libmodule-install-autolicense-perl 0.08-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | NAME
Module::Install::AutoLicense - A Module::Install extension to
automagically generate LICENSE files
SYNOPSIS
# In Makefile.PL
use inc::Module::Install;
author 'Vestan Pants';
license 'perl';
auto_license;
An appropriate "LICENSE" file will be generated for your distribution.
DESCRIPTION
Module::Install::AutoLicense is a Module::Install extension that
generates a "LICENSE" file automatically whenever the author runs
"Makefile.PL". On the user side it does nothing.
When "make distclean" is invoked by the author, the "LICENSE" is
removed.
The appropriate license to determined from the meta provided with the
"license" command and the holder of the license from the "author"
command.
Software::License is used to generate the "LICENSE" file.
COMMANDS
This plugin adds the following Module::Install command:
"auto_license"
Does nothing on the user-side. On the author-side it will generate a
"LICENSE" file according to the previously supplied "license"
command. The "holder" of the license is determined from the "author"
meta or may be specified using the "holder" parameter.
auto_license( holder => 'Vestan Pants and Ivor Biggun' );
It is important to note that the "auto_license" must follow "author"
and "license" commands in the "Makefile.PL" ( as demonstrated in the
SYNOPSIS above ), otherwise the meta these commands provide will be
unavailable to "auto_license". Call it a feature.
AUTHOR
Chris "BinGOs" Williams
LICENSE
Copyright © Chris Williams
This module may be used, modified, and distributed under the same terms
as Perl itself. Please see the license that came with your Perl
distribution for details.
SEE ALSO
Module::Install
Software::License
|