|
NAMEModule::Build::Pluggable - Module::Build meets plugins SYNOPSIS use Module::Build::Pluggable (
'Repository',
'ReadmeMarkdownFromPod',
'PPPort',
);
my $builder = Module::Build::Pluggable->new(
... # normal M::B args
);
$builder->create_build_script();
DESCRIPTIONModule::Build::Pluggable adds pluggability for Module::Build. HOW CAN I WRITE MY OWN PLUGIN?Module::Build::Pluggable call HOOK_prepare on preparing arguments for "Module::Build->new", HOOK_configure on configuration step, and HOOK_build on build step. That's all. And if you want a help, you can use Module::Build::Pluggable::Base as base class. AUTHORTokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM> SEE ALSOThis module built on Module::Build. LICENSECopyright (C) Tokuhiro Matsuno This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|