-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
executable file
·40 lines (38 loc) · 907 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;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile
(
($] ge '5.005') ?
(
AUTHOR => 'Mark Stosberg, Ron Savage (ron@savage.net.au)',
ABSTRACT => 'Manage CGI uploads using an SQL database',
) : (),
clean =>
{
FILES => 'blib/* Makefile MANIFEST CGI-Uploader-*'
},
dist =>
{
COMPRESS => 'gzip',
SUFFIX => 'gz'
},
DISTNAME => 'CGI-Uploader',
NAME => 'CGI::Uploader',
PL_FILES => {},
PREREQ_PM =>
{
File::Basename => 0,
File::Copy => 0,
File::Path => 0,
File::Spec => 0,
File::Temp => 0,
HTML::Template => 0,
HTTP::BrowserDetect => 0,
Image::Size => 0,
MIME::Types => 0,
Params::Validate => 0,
Squirrel => 0 # I.e. Mouse or Moose.
},
VERSION_FROM => 'lib/CGI/Uploader.pm',
);