File: Makefile.PL

package info (click to toggle)
libhtml-strip-perl 2.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: ansic: 266; perl: 88; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use 5.008;
use ExtUtils::MakeMaker;
my $EUMM_VERSION = eval $ExtUtils::MakeMaker::VERSION;

WriteMakefile(
    NAME                => 'HTML::Strip',
    VERSION_FROM        => 'Strip.pm',
    PREREQ_PM           => {
        # core modules
        'warnings'      => 0,
        'strict'        => 0,
        'Carp'          => 0,
        'DynaLoader'    => 0,
        # build requires
        'Test::More'        => 0,
        'Test::Exception'   => 0,
    },
    ABSTRACT_FROM       => 'Strip.pm',
    AUTHOR              => 'Alex Bowley <kilinrax@cpan.org>',
  ( $EUMM_VERSION >= 6.46 ? (
    LICENSE             => 'perl',
    META_MERGE => {
        recommended => {
            'HTML::Entities' => 0,
        },
    },
  ) : () ),
  ( $EUMM_VERSION >= 6.48 ? (
    MIN_PERL_VERSION    => 5.008,
  ) : () ),
    LIBS                => [''], # e.g., '-lm'
    DEFINE              => '', # e.g., '-DHAVE_SOMETHING'
    INC                 => '', # e.g., '-I/usr/include/other'
    OBJECT              => '$(O_FILES)', # link all the C files too
);