File: Makefile.PL

package info (click to toggle)
libirc-formatting-html-perl 0.29-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 96 kB
  • sloc: perl: 464; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'IRC::Formatting::HTML',
    AUTHOR              => 'Lee Aylward <lee@laylward.com>',
    VERSION_FROM        => 'lib/IRC/Formatting/HTML.pm',
    ABSTRACT_FROM       => 'lib/IRC/Formatting/HTML.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'HTML::Parser' => 0,
        'Test::More' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'IRC-Formatting-HTML-*' },
);