forked from fangly/io-pager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
42 lines (42 loc) · 1.29 KB
/
Makefile.PL
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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'IO::Pager',
'VERSION_FROM' => 'lib/IO/Pager.pm', # finds $VERSION
'BUILD_REQUIRES' => {
'Test::More' => 0.88,
'Config' => 0,
'Env' => 0,
'Exporter' => 0,
'File::Temp' => 0,
'bignum' => 0,
},
'PREREQ_PM' => {
'base' => 0,
'Env' => 0,
'File::Spec' => 0,
'File::Which' => 0,
'IO::Handle' => 0,
'PerlIO' => 0,
'SelectSaver' => 0,
'Symbol' => 0,
'Term::ReadKey' => 0,
'Text::Wrap' => 0,
'Tie::Handle' => 0,
},
META_MERGE => {
"meta-spec" => { version => 2 },
runtime => {
recommends => {
# #Since Term::Pager is unmodern
# 'Term::ReadKey' => 0,
},
},
},
($] >= 5.005 ? # Add these new keywords supported since 5.005
(
ABSTRACT_FROM => 'lib/IO/Pager.pm', # retrieve abstract from module
AUTHOR => 'Jerrad Pierce <[email protected]>, Florent Angly <[email protected]>',
) : ()),
);