~ubuntu-branches/ubuntu/quantal/libtext-wikiformat-perl/quantal

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Mako Hill
  • Date: 2011-02-12 14:44:49 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110212144449-6lcsb4ihr1ayymis
Tags: 0.79-1
* New upstream release. (Closes: #583317)
* Fixed broken watch file. (Closes: #449734)
* Move to new source format and update package in a various ways.
* Suppress packlist.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
use ExtUtils::MakeMaker;
3
3
WriteMakefile
4
4
(
 
5
          'PL_FILES' => {},
 
6
          'INSTALLDIRS' => 'site',
5
7
          'NAME' => 'Text::WikiFormat',
 
8
          'EXE_FILES' => [],
6
9
          'VERSION_FROM' => 'lib/Text/WikiFormat.pm',
7
10
          'PREREQ_PM' => {
 
11
                           'Test::More' => '0.30',
8
12
                           'Scalar::Util' => '1.14',
9
 
                           'Test::More' => '0.3',
10
13
                           'URI::Escape' => ''
11
 
                         },
12
 
          'INSTALLDIRS' => 'site',
13
 
          'EXE_FILES' => [],
14
 
          'PL_FILES' => {}
 
14
                         }
15
15
        )
16
16
;