Result:
found more than 780 distributions - search limited to the first 2001 files matching your query ( run in 1.419 )


Alien-TinyCCx

 view release on metacpan or  search on metacpan

inc/My/Build.pm  view on Meta::CPAN

sub ACTION_build {
	my $self = shift;
	
	mkdir 'share';
	
	$self->SUPER::ACTION_build;
}

use File::Path;
sub ACTION_clean {
	my $self = shift;

inc/My/Build.pm  view on Meta::CPAN

	
	# Call system-specific cleanup code
	$self->my_clean;
	
	# Call base class code
	$self->SUPER::ACTION_clean;
}

use File::Copy;
use File::Spec;
sub ACTION_devsetup {

inc/My/Build.pm  view on Meta::CPAN

# This one's an author action, so I assume they have git and have properly
# configured.
sub ACTION_dist {
	my $self = shift;
	reset_src;
	$self->SUPER::ACTION_dist;
}

# This one's an author action, so I assume they have git and have properly
# configured.
sub ACTION_distdir {
	my $self = shift;
	reset_src;
	$self->SUPER::ACTION_distdir;
}

# This one's an author action, so I assume they have git and have properly
# configured.
sub ACTION_disttest {
	my $self = shift;
	reset_src;
	$self->SUPER::ACTION_disttest;
}

sub apply_patches {
	my ($filename, @patches) = @_;
	

 view all matches for this distribution


Alien-UDUNITS2

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-Uninum

 view release on metacpan or  search on metacpan

inc/Alien/Uninum/ModuleBuild.pm  view on Meta::CPAN

use FindBin ();
use Text::ParseWords qw( shellwords );
 
sub new {
  my $class = shift;
  return $class->SUPER::new(@_);
}

my $cflags;
my $libs;

inc/Alien/Uninum/ModuleBuild.pm  view on Meta::CPAN

  #}
 
  #local $ENV{CFLAGS} = $cflags;
  #local $ENV{LIBS}   = $libs;
   
  $self->SUPER::alien_do_commands($phase);
}

package
  main;

 view all matches for this distribution


Alien-V8

 view release on metacpan or  search on metacpan

inc/Alien/V8/Build.pm  view on Meta::CPAN

    print "V8 library successfully built\n";
    
    chdir($curdir) or
        die "Failed to chdir to $curdir: $!\n";
    
    $self->SUPER::ACTION_build();
}

1;

__END__

 view all matches for this distribution


Alien-WFDB

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-WhiteDB

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-WiX-Version30

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

                } else {
                    $self->notes('install_wix' => 0);
                }
            }
            
            $self->SUPER::ACTION_code();
        }

		
		sub ACTION_authortest {
			my ($self) = @_;

Build.PL  view on Meta::CPAN


			if (-e 'MANIFEST') {
				unlink 'MANIFEST' or die "Can't unlink MANIFEST: $!";
			}

			return $self->SUPER::ACTION_manifest(@arguments);
		}

    }
);

 view all matches for this distribution


Alien-Wslay

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-XPA

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.040

 view all matches for this distribution


Alien-YAMLScript

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-Z3

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-ZMQ-latest

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-ZMQ

 view release on metacpan or  search on metacpan

inc/My/Build.pm  view on Meta::CPAN

use base 'Module::Build';

sub ACTION_code {
    my $self = shift;

    $self->SUPER::ACTION_code;

    return if -e 'build-zeromq';
    $self->add_to_cleanup('build-zeromq');

    my %args = $self->args;

 view all matches for this distribution


Alien-Zig

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-autoconf

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-automake

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-bc-GNU

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

}
 
sub MY::install {
	$abmm->can('mm_install')
		? $abmm->mm_install(@_)
		: shift->SUPER::install(@_);
}

 view all matches for this distribution


Alien-bison

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-cargo-capi

 view release on metacpan or  search on metacpan

lib/Alien/cargo/capi.pm  view on Meta::CPAN


sub bin_dir {
    my $self = shift;
    require Alien::cargo;
    my @dirs = Alien::cargo->bin_dir;
    unshift @dirs, $self->SUPER::bin_dir;
    @dirs;
}

1;

 view all matches for this distribution


Alien-cargo-clone

 view release on metacpan or  search on metacpan

lib/Alien/cargo/clone.pm  view on Meta::CPAN



sub bin_dir {
    my $self = shift;
    my @dirs = Alien::cargo->bin_dir;
    unshift @dirs, $self->SUPER::bin_dir;
    @dirs;
}

1;

 view all matches for this distribution


Alien-castxml

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-chromaprint

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-cmake3

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-cmark

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-cue

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-curl

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-ed-GNU

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

}
 
sub MY::install {
	$abmm->can('mm_install')
		? $abmm->mm_install(@_)
		: shift->SUPER::install(@_);
}

 view all matches for this distribution


Alien-ffmpeg

 view release on metacpan or  search on metacpan

inc/MyModuleBuild.pm  view on Meta::CPAN

    my %script_files = map { $_ => 1 } @{ $self->{properties}{script_files} };
    delete @script_files{ @$bins };
    $self->{properties}{script_files} = [ keys %script_files ];
  }

  $self->SUPER::process_script_files;
}

1;

 view all matches for this distribution


Alien-flex

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  }

  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}

# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


Alien-fpm

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $abmm->mm_postamble(@_);
  }
  sub install {
    $abmm->can('mm_install')
      ? $abmm->mm_install(@_)
      : shift->SUPER::install(@_);
  }
}
# END code inserted by Dist::Zilla::Plugin::AlienBuild

 view all matches for this distribution


( run in 1.419 second using v1.01-cache-2.11-cpan-49f99fa48dc )