File: Makefile.PL

package info (click to toggle)
libhtml-tagset-perl 3.24-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 189; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,093 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main;

use 5.010;

use strict;

use ExtUtils::MakeMaker 6.46;

my %parms = (
    NAME             => 'HTML::Tagset',
    AUTHOR           => 'Andy Lester <andy@petdance.com>',
    ABSTRACT         => 'Data tables useful in parsing HTML',
    VERSION_FROM     => 'lib/HTML/Tagset.pm',
    LICENSE          => 'artistic_2',
    MIN_PERL_VERSION => 5.010001,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.46',
    },
    BUILD_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.46',
    },
    TEST_REQUIRES    => {
        'Test::More' => '0.95',
    },
    META_MERGE       => {
        resources => {
            license     => 'https://opensource.org/licenses/artistic-license-2.0',
            homepage    => 'https://github.com/petdance/html-tagset',
            bugtracker  => 'https://github.com/petdance/html-tagset/issues',
            repository  => 'https://github.com/petdance/html-tagset',
        }
    },
    dist            => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean           => { FILES => 'HTML-Tagset-*' },
);

WriteMakefile( %parms );