Padre
view release on metacpan or search on metacpan
lib/Padre/PluginBuilder.pm view on Meta::CPAN
Generates a F<.par> file that contains all the plug-in code. The name of the file
will be according to the plug-in class name: C<Padre::Plugin::Foo> will result
in F<Foo.par>.
Installing the plug-in (for the current architecture) will be as simple as copying
the generated F<.par> file into the C<plugins> directory of the user's Padre
configuration directory (which defaults to F<~/.padre> on Unix systems).
=cut
use 5.008;
use strict;
use warnings;
use Module::Build ();
use Padre::Constant ();
our $VERSION = '1.02';
our @ISA = 'Module::Build';
sub ACTION_plugin {
my ($self) = @_;
# Need PAR::Dist
# Don't make a dependency in the Padre Makefile.PL for this
if ( not eval { require PAR::Dist; PAR::Dist->VERSION(0.17) } ) {
$self->log_warn("In order to create .par files, you need to install PAR::Dist first.");
return ();
}
$self->depends_on('build');
my $module = $self->module_name;
$module =~ s/^Padre::Plugin:://;
$module =~ s/::/-/g;
return PAR::Dist::blib_to_par(
name => $self->dist_name,
version => $self->dist_version,
dist => "$module.par",
);
}
=pod
=head2 C<installplugin>
Generates the plug-in F<.par> file as the C<plugin> target, but also installs it
into the user's Padre plug-ins directory.
=cut
sub ACTION_installplugin {
my ($self) = @_;
$self->depends_on('plugin');
my $module = $self->module_name;
$module =~ s/^Padre::Plugin:://;
$module =~ s/::/-/g;
my $plugin = "$module.par";
require Padre;
return $self->copy_if_modified(
from => $plugin,
to_dir => Padre::Constant::PLUGIN_DIR,
);
}
1;
__END__
=pod
=head1 SEE ALSO
L<Padre>, L<Padre::Config>
L<Module::Build>
L<PAR> for more on the plug-in system.
=head1 COPYRIGHT
Copyright 2008-2016 The Padre development team as listed in Padre.pm.
=head1 LICENSE
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl 5 itself.
=cut
# Copyright 2008-2016 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.
( run in 0.514 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )