This repository was archived by the owner on Sep 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
48 lines (46 loc) · 1.37 KB
/
Copy pathMakefile.PL
File metadata and controls
48 lines (46 loc) · 1.37 KB
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
use 5.010;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dependencies::Searcher',
AUTHOR => q{smonff <smonff@gmail.com>},
VERSION_FROM => 'lib/Dependencies/Searcher.pm',
ABSTRACT_FROM => 'lib/Dependencies/Searcher.pm',
LICENSE => 'Perl_5',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.74,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'IO::File' => 0,
},
TEST_REQUIRES => {
'App::Ack' => 2.10,
'Module::Version' => 0,
'Test::Pod::Coverage' => 1.08,
'Test::Pod' => 1.48,
},
# For any module added, please add it to t/09-cpanfile.t too or
# tests will fail :D
PREREQ_PM => {
'App::Ack' => 2.10,
'Data::Printer' => 0.35,
'File::HomeDir' => 1.00,
'File::Spec::Functions' => 3.40,
'File::Stamped' => 0.03,
'IPC::Cmd' => 0,
'IPC::Run' => 0.90,
'Log::Minimal' => 0.16,
'Module::CoreList' => 2.99,
'Module::Version' => 0.12,
'Moose' => 2.0602,
'Path::Class' => 0.32,
'Test::More' => 0,
'Version::Compare' => 0.14,
},
MIN_PERL_VERSION => '5.010',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dependencies-Searcher-*' },
);