-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
65 lines (62 loc) · 1.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use 5.010001;
use warnings;
use strict;
use ExtUtils::MakeMaker;
my %prereqs_os_specific;
if ( $^O eq 'MSWin32' ) {
%prereqs_os_specific = (
'Win32::Console::ANSI' => 0,
'Term::Choose::Win32' => '1.630',
);
}
WriteMakefile(
PL_FILES => {},
MIN_PERL_VERSION => '5.010001',
LICENSE => 'perl',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
web => 'https://github.com/kuerbis/Term-Choose_HAE',
url => 'https://github.com/kuerbis/Term-Choose_HAE.git',
},
},
},
AUTHOR => 'Matthaeus Kiem <[email protected]>',
NAME => 'Term::Choose_HAE',
ABSTRACT_FROM => 'lib/Term/Choose_HAE.pm',
VERSION_FROM => 'lib/Term/Choose_HAE.pm',
EXE_FILES => [],
BUILD_REQUIRES => {
'lib' => 0,
'File::Spec::Functions' => 0,
'FindBin' => 0,
'Test::More' => 0,
'Test::Fatal' => 0,
},
PREREQ_PM => {
'if' => 0,
'parent' => 0,
'strict' => 0,
'warnings' => 0,
'Carp' => 0,
'Exporter' => 0,
'Term::Choose' => '1.630',
'Term::Choose::Linux' => '1.630',
'Term::Choose::LineFold' => '1.630',
'Term::Choose::Constants' => '1.630',
%prereqs_os_specific
},
test => {
TESTS => 't/*/*.t',
},
dist => {
COMPRESS => 'gzip',
SUFFIX => '.gz',
TARFLAGS => '--format=gnu -cvf',
},
clean => {
FILES => 'Term-Choose_HAE-*',
},
);