Blame Makefile.PL

Packit 4513e9
# This -*-perl-*- program writes the Makefile for installing this distribution.
Packit 4513e9
#
Packit 4513e9
# See "perldoc perlmodinstall" or "perldoc ExtUtils::MakeMaker" for
Packit 4513e9
# info on how to control how the installation goes.
Packit 4513e9
Packit 4513e9
require 5.004;
Packit 4513e9
use strict;
Packit 4513e9
use ExtUtils::MakeMaker;
Packit 4513e9
Packit 4513e9
WriteMakefile(
Packit 4513e9
    NAME            => 'HTML::Tagset',
Packit 4513e9
    AUTHOR          => 'Andy Lester <andy@petdance.com>',
Packit 4513e9
    VERSION_FROM    => 'Tagset.pm', # finds $VERSION
Packit 4513e9
    ABSTRACT_FROM   => 'Tagset.pm', # retrieve abstract from module
Packit 4513e9
    PMLIBDIRS       => [qw(lib/)],
Packit 4513e9
    dist            => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
Packit 4513e9
    clean           => { FILES => 'HTML-Tagset-*' },
Packit 4513e9
Packit 4513e9
);