]> Dogcows Code - chaz/p5-CGI-Ex/blob - Makefile.PL
CGI::Ex 2.04
[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
15 dist => {
16 DIST_DEFAULT => 'all tardist',
17 COMPRESS => 'gzip -vf',
18 SUFFIX => '.gz',
19 },
20
21 clean => {
22 FILES => '*~',
23 },
24
25 realclean => {
26 FILES => '*~',
27 },
28 );
29
30 package MY;
31
32 sub postamble {
33 return qq^
34
35 pm_to_blib: README
36
37 README: \$(VERSION_FROM)
38 pod2text \$(VERSION_FROM) > README
39 ^;
40 }
41
42 1;
This page took 0.031736 seconds and 4 git commands to generate.