]> Dogcows Code - chaz/p5-CGI-Ex/blob - Makefile.PL
add PSGI handler
[chaz/p5-CGI-Ex] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 ###----------------------------------------------------------------###
4 # Copyright 2003 - Paul Seamons #
5 # Distributed under the GNU General Public License without warranty #
6 ###----------------------------------------------------------------###
7
8 WriteMakefile(
9 NAME => "CGI::Ex",
10 AUTHOR => "Paul Seamons",
11 ABSTRACT_FROM => "lib/CGI/Ex.pm",
12 VERSION_FROM => "lib/CGI/Ex.pm",
13 INSTALLDIRS => 'site',
14 PREREQ_PM => {
15 'Template::Alloy' => '1.004',
16 },
17
18 dist => {
19 DIST_DEFAULT => 'all tardist',
20 COMPRESS => 'gzip -vf',
21 SUFFIX => '.gz',
22 },
23
24 clean => {
25 FILES => '*~',
26 },
27
28 realclean => {
29 FILES => '*~',
30 },
31 );
32
33 package MY;
34
35 sub postamble {
36 return qq^
37
38 pm_to_blib: README
39
40 README: \$(VERSION_FROM)
41 pod2text \$(VERSION_FROM) > README
42 ^;
43 }
44
45 1;
This page took 0.035539 seconds and 4 git commands to generate.