forked from skorpworks/snag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·40 lines (38 loc) · 959 Bytes
/
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
use ExtUtils::MakeMaker;
push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009;
WriteMakefile
(
'NAME' => 'SNAG',
'VERSION_FROM' => 'lib/SNAG.pm',
'ABSTRACT_FROM' => 'lib/SNAG.pm',
'PREREQ_PM' => {
'Config::General' => 0,
'Crypt::CBC' => 0,
'Crypt::Blowfish' => 0,
'Crypt::Rijndael' => 0,
'DBI' => 0,
'DBM::Deep' => 0,
'Data::Dumper' => 0,
'Date::Parse' => 0,
'Devel::Size' => 0,
'Digest::SHA' => 0,
'FreezeThaw' => 0,
'HTML::Entities' => 0,
'LWP' => 0,
'Mail::Sendmail' => 0,
'Net::Nslookup' => 0,
'POE::Component::EasyDBI' => 0,
'POE::XS::Loop::Poll' => 0,
'POE' => 0,
'Proc::ProcessTable' => 0,
'Statistics::Descriptive' => 0,
'Storable' => 0,
'Text::Diff' => 0,
'URI::Escape' => 0,
'version' => 0,
},
'EXE_FILES' => [ 'script/snagw.pl', 'script/snagp.pl', 'script/snags.pl', 'script/snagc.pl' ],
'PL_FILES' => {},
LICENSE => 'perl',
@extra,
);