File: Makefile.PL

package info (click to toggle)
libtext-autoformat-perl 1.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 120 kB
  • ctags: 45
  • sloc: perl: 699; makefile: 45
file content (18 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Text::Autoformat',
    AUTHOR              => 'Damian Conway <DCONWAY@CPAN.org>',
    VERSION_FROM        => 'lib/Text/Autoformat.pm',
    ABSTRACT_FROM       => 'lib/Text/Autoformat.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Text::Reform' => 1.11,
        'version'    => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Text-Autoformat-*' },
);