-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
73 lines (73 loc) · 2.17 KB
/
Makefile.PL
File metadata and controls
73 lines (73 loc) · 2.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env perl
use ExtUtils::MakeMaker 6.52; # need >=6.52 for CONFIGURE_REQUIRES
# and in CONFIGURE_REQUIRES, we require >=6.64 for TEST_REQUIRES
WriteMakefile(
NAME => 'Shell::Tools',
AUTHOR => 'Hauke D <haukex@zero-g.net>',
LICENSE => 'perl',
VERSION_FROM => 'lib/Shell/Tools.pm', # finds $VERSION
ABSTRACT_FROM => 'lib/Shell/Tools.pm',
MIN_PERL_VERSION => '5.8.0',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
homepage => 'https://github.com/haukex/Shell-Tools',
repository => {
type => 'git',
url => 'https://github.com/haukex/Shell-Tools.git',
web => 'https://github.com/haukex/Shell-Tools',
},
bugtracker => {
web => 'https://github.com/haukex/Shell-Tools/issues',
#mailto => '',
},
},
prereqs => {
runtime => {
recommends => { # "strongly encouraged and should be satisfied except in resource constrained environments"
# CPAN
'Try::Tiny' => 0,
'Path::Class' => 0,
'File::pushd' => 0,
'File::Find::Rule' => 0,
'IPC::Run3::Shell' => '0.52',
},
suggests => { # "optional, but are suggested for enhanced operation"
},
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
PREREQ_PM => {
# Perl core modules
'base' => 0,
'Exporter' => 0,
'IO::File' => 0,
'IO::Handle' => 0,
'Carp' => 0,
'Getopt::Std' => '1.04',
'Pod::Usage' => 0,
'Cwd' => 0,
'File::Spec::Functions' => 0,
'File::Basename' => 0,
'File::Temp' => 0,
'File::Copy' => 0,
'File::Path' => '2.08',
'File::Find' => 0,
'Fcntl' => 0,
'FindBin' => 0,
'Data::Dumper' => 0,
'Scalar::Util' => 0,
'List::Util' => 0,
},
TEST_REQUIRES => {
# CPAN
'Capture::Tiny' => 0,
# Perl core modules
'Test::More' => 0,
'Config' => 0,
# excluding any modules for author tests
},
);