forked from perldude/Class-Simple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·23 lines (23 loc) · 754 Bytes
/
Copy pathMakefile.PL
File metadata and controls
executable file
·23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use 5.008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
#
# $Id: Makefile.PL,v 1.4 2007/08/27 22:24:06 sullivan Exp $
WriteMakefile(
NAME => 'Class::Simple',
VERSION_FROM => 'lib/Class/Simple.pm', # finds $VERSION
PREREQ_PM =>
{
Class::ISA => 0.32,
Scalar::Util => 0,
List::Util => 0,
}, # e.g., Module::Name => 1.1
TEST_REQUIRES =>
{
Test::Perl::Critic => 0,
},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Class/Simple.pm', # retrieve abstract from module
AUTHOR => 'Michael Sullivan <sullivan@apple.com>') : ()),
);