-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
77 lines (61 loc) · 1.76 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
66
67
68
69
70
71
72
73
74
75
76
use 5.006;
use strict;
use warnings;
if ( $^O eq 'MSWin32' ) {
die "Enbld can't run on windows platform.";
}
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Enbld',
AUTHOR => q{magnolia <[email protected]>},
VERSION_FROM => 'lib/Enbld.pm',
ABSTRACT_FROM => 'lib/Enbld.pm',
LICENSE => 'perl',
MIN_PERL_VERSION => 5.010001,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.66,
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => 6.66,
},
TEST_REQUIRES => {
'Test::More' => 0.98,
'Test::Output' => 0,
'Test::Exception' => 0,
},
"EXE_FILES" => [
"bin/enblder",
"bin/chkenbld",
"bin/getenbld",
],
PREREQ_PM => {
'version' => 0.77,
'autodie' => 0,
'parent' => 0,
'HTTP::Tiny' => 0.041,
'IO::Socket::SSL' => 0,
'Try::Lite' => 0,
'File::Copy::Recursive' => 0,
'File::Spec' => 0,
'File::Basename' => 0,
},
META_MERGE => {
"meta-spec" => { version => 2 },
"no_index" => {
"directory" => [ "xt" ]
},
"resources" => {
"homepage" => "https://github.com/magnolia-k/Enbld",
"bugtracker" => {
"web" => "https://github.com/magnolia-k/Enbld/issues",
},
"repository" => {
"type" => "git",
"url" => "https://github.com/magnolia-k/Enbld.git",
"web" => "https://github.com/magnolia-k/Enbld",
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Enbld-*' },
);