WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ NAME
SYNOPSIS
In your Makefile.PL: (Recommended Usage)

use lib qw(.); # required for Perl 5.26 and newer
use inc::Module::Install;

# Define metadata
Expand All @@ -28,7 +29,7 @@ WARNING
Please note that while Module::Install pioneered many great ideas in its
time, its primary benefits have been better achieved by the authoring
tool Dist::Zilla, and its spinoffs Dist::Milla and Minilla. These tools
allow the author to build and maintain distributions with DWIM
allow the author to build and aintain distributions with DWIM
convenience, while the distribution is installed directly by
ExtUtils::MakeMaker or similar installation tools, avoiding the
complexity of bundling the installer. Dist::Zilla additionally has a
Expand All @@ -37,6 +38,13 @@ WARNING
Module::Install for new distributions is therefore discouraged by the
maintainers.

From Perl 5.26 the current directory is not included in @INC and
the Makefile.PL will have to be directed to including Module::Install from
the inc/ directory.

use lib qw(.); # required for Perl 5.26 and newer
use inc::Module::Install;

DESCRIPTION
Module::Install is a package for writing installers for CPAN (or
CPAN-like) distributions that are clean, simple, minimalist, act in a
Expand Down