~ubuntu-branches/ubuntu/karmic/libgetopt-euclid-perl/karmic

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Niko Tyni
  • Date: 2006-02-23 22:18:49 UTC
  • Revision ID: james.westby@ubuntu.com-20060223221849-i2zv3bhj0hznztrt
Tags: upstream-0.0.5
ImportĀ upstreamĀ versionĀ 0.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
use ExtUtils::MakeMaker;
 
4
 
 
5
WriteMakefile(
 
6
    NAME                => 'Getopt::Euclid',
 
7
    AUTHOR              => 'Damian Conway <DCONWAY@cpan.org>',
 
8
    VERSION_FROM        => 'lib/Getopt/Euclid.pm',
 
9
    ABSTRACT_FROM       => 'lib/Getopt/Euclid.pm',
 
10
    PL_FILES            => {},
 
11
    PREREQ_PM => {
 
12
        'Test::More' => 0,
 
13
        'version'    => 0,
 
14
        'File::Spec::Functions' => 0,
 
15
        'List::Util' => 0,
 
16
    },
 
17
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 
18
    clean               => { FILES => 'Getopt-Euclid-*' },
 
19
);