~ubuntu-branches/ubuntu/vivid/libwiki-toolkit-formatter-usemod-perl/vivid

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2008-05-05 16:32:42 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080505163242-2mhz2xh17hd0d7ap
Tags: 0.22-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use ExtUtils::MakeMaker;
2
2
 
3
 
WriteMakefile( NAME         => "Wiki::Toolkit::Formatter::UseMod",
4
 
               VERSION_FROM => "lib/Wiki/Toolkit/Formatter/UseMod.pm",
5
 
               PREREQ_PM    => { 'Text::WikiFormat' => '0.71', # 0.7 buggy
6
 
                                 'HTML::PullParser' => 0,
7
 
                                 'Test::More'       => 0,
8
 
                                 'Test::MockObject' => '0.07', #earlier no mock
9
 
                                 'URI::Escape'      => 0,
10
 
                                 'URI::Find::Delimited' => '0.02'#earlier buggy
11
 
                               }
12
 
             );
 
3
WriteMakefile(
 
4
    (MM->can('signature_target') ? (SIGN => 1) : ()),
 
5
    NAME         => "Wiki::Toolkit::Formatter::UseMod",
 
6
    VERSION_FROM => "lib/Wiki/Toolkit/Formatter/UseMod.pm",
 
7
    PREREQ_PM    => { 'Text::WikiFormat'     => '0.71', # 0.7 buggy
 
8
                      'HTML::PullParser'     => 0,
 
9
                      'Test::More'           => 0,
 
10
                      'URI::Escape'          => 0,
 
11
                      'URI::Find::Delimited' => '0.02', # earlier buggy
 
12
                      'Wiki::Toolkit'        => 0,
 
13
                    },
 
14
    clean        => { FILES => "t/*.db" },
 
15
);