~ubuntu-branches/ubuntu/maverick/libmodule-starter-plugin-cgiapp-perl/maverick

« back to all changes in this revision

Viewing changes to lib/Module/Starter/Plugin/CGIApp/templates/titanium/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Jaldhar H. Vyas
  • Date: 2008-09-18 22:36:44 UTC
  • Revision ID: james.westby@ubuntu.com-20080918223644-ali0eh6eno0tw5ta
Tags: upstream-0.05
ImportĀ upstreamĀ versionĀ 0.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# $Id$
 
3
#
 
4
use strict;
 
5
use warnings;
 
6
use ExtUtils::MakeMaker;
 
7
 
 
8
WriteMakefile(
 
9
    NAME                => '<tmpl_var main_module>',
 
10
    AUTHOR              => '<tmpl_var author> <<tmpl_var email>>',
 
11
    VERSION_FROM        => '<tmpl_var main_pm_file>',
 
12
    ABSTRACT_FROM       => '<tmpl_var main_pm_file>',
 
13
    PL_FILES            => {},
 
14
    PREREQ_PM => {
 
15
        'Titanium'                      => 0,
 
16
        'File::Find'                    => 0,
 
17
        'HTML::Template'                => 0,
 
18
        'Pod::Coverage'                 => 0.18,
 
19
        'Pod::Usage'                    => 0,
 
20
        'Test::More'                    => 0,
 
21
        'Test::Pod'                     => 1.22,
 
22
        'Test::Pod::Coverage'           => 1.08,
 
23
        'Test::WWW::Mechanize::CGIApp'  => 0,
 
24
    },
 
25
    SIGN => 1,
 
26
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 
27
    clean               => { FILES => '<tmpl_var distro>-*' },
 
28
);