-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile.PL
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathMakefile.PL
File metadata and controls
49 lines (49 loc) · 1.38 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => "PEF::Front",
AUTHOR => "Pef Secure",
VERSION => "0.01",
INSTALLDIRS => 'site',
PREREQ_PM => {
'Cache::FastMmap' => 0,
'Carp' => 0,
'Data::Dumper' => 0,
'Digest::MD5' => 0,
'DBIx::Connector' => "0.52",
'Exporter' => 0,
'Encode' => 0,
'Errno' => 0,
'Fcntl' => 0,
'File::Basename' => 0,
'File::Find' => 0,
'FindBin' => 0,
'GDBM_File' => 0,
'GD::SecurityImage' => 0,
'Geo::IPfree' => 0,
'IO::Socket' => 0,
'JSON' => 0,
'Locale::PO' => 0,
'MLDBM' => 0,
'MLDBM::Sync' => "0.30",
'POSIX' => 0,
'Regexp::Common' => 0,
'Socket' => 0,
'Storable' => 0,
'strict' => 0,
'Template::Alloy' => 0,
'Time::Duration::Parse' => "0.06",
'Time::HiRes' => 0,
'URI::Escape' => 0,
'utf8' => 0,
'warnings' => 0,
'XML::Simple' => "2",
'YAML::XS' => "0.38",
},
dist => {
DIST_DEFAULT => 'all tardist',
COMPRESS => 'gzip -vf',
SUFFIX => '.gz',
},
clean => {FILES => '*~',},
realclean => {FILES => '*~',},
);