forked from trystanzj/Farly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
60 lines (59 loc) · 1.66 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
use 5.008008;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Farly',
VERSION_FROM => 'lib/Farly.pm',
LICENSE => 'gpl',
MIN_PERL_VERSION => 5.008008,
META_MERGE => {
resources => {
license => 'http://www.gnu.org/licenses/gpl-3.0.html',
repository => 'https://github.com/trystanzj/Farly',
},
},
BUILD_REQUIRES => { 'ExtUtils::MakeMaker' => 6.62,
'Test::Simple' => 0,
'Test::More' => 0,
},
CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 6.62, },
PREREQ_PM => {
#non-core
'Parse::RecDescent' => 1.965001,
'Template' => 2.22,
'Log::Any' => 0.15,
'Log::Any::Adapter' => 0.11,
#core
'Carp' => 0,
'Config' => 0,
'Cwd' => 0,
'DynaLoader' => 0,
'Exporter' => 0,
'Exporter::Heavy' => 0,
'Fcntl' => 0,
'File::Basename' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'File::Spec::Unix' => 0,
'File::Spec::Win32' => 0,
'IO' => 0,
'IO::File' => 0,
'IO::Handle' => 0,
'IO::Seekable' => 0,
'List::Util' => 0,
'Scalar::Util' => 0,
'SelectSaver' => 0,
'SelfLoader' => 0,
'Symbol' => 0,
'Sys::Hostname' => 0,
'Text::Balanced' => 0,
'Time::HiRes' => 0,
},
(
$] >= 5.005
? (
ABSTRACT => 'Farly - Firewall Analysis and Rewrite LibrarY',
AUTHOR => 'Trystan Johnson'
)
: ()
),
);