File: Makefile.PL

package info (click to toggle)
libtext-diff-formattedhtml-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 88 kB
  • sloc: perl: 208; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 790 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Text::Diff::FormattedHTML',
    AUTHOR              => q{Alberto Simoes <ambs@cpan.org>},
    VERSION_FROM        => 'lib/Text/Diff/FormattedHTML.pm',
    ABSTRACT_FROM       => 'lib/Text/Diff/FormattedHTML.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
                  'Test::More'      => '0',
                  'Algorithm::Diff' => '1.1900',
                  'File::Slurp'     => '0',
                  'String::Diff'    => '0.04',
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Text-Diff-FormattedHTML-*' },
);