The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

use 5.006;
use strict;
WriteMakefile(
NAME => 'Moonshine::Parser',
AUTHOR => q{Robert Acock <thisusedtobeanemail@gmail.com>},
VERSION_FROM => 'lib/Moonshine/Parser.pm',
ABSTRACT_FROM => 'lib/Moonshine/Parser.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Moonshine::Test' => 0.13,
},
PREREQ_PM => {
'Moonshine::Element' => 0.09,
'HTML::Parser' => '3.72',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Moonshine-Parser-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
},
},
},
META_ADD => {
provides => Module::Metadata->provides(version => '2', dir => 'lib'),
},
);