App-Netdisco

 view release on metacpan or  search on metacpan

lib/App/Netdisco/Builder.pm  view on Meta::CPAN

package App::Netdisco::Builder;

use strict;
use warnings;

use File::Spec; # core
use Module::Build;
@App::Netdisco::Builder::ISA = qw(Module::Build);

sub ACTION_python {
    my $self = shift;
    require App::Netdisco::Util::Python;
    $self->do_system( App::Netdisco::Util::Python::py_install() );
}

sub ACTION_install {
    my $self = shift;
    $self->SUPER::ACTION_install;
    $self->ACTION_python;
}

1;



( run in 1.522 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )