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
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
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
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
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
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
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
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
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
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 postamble code inserted by Dist::Zilla::Plugin::AlienBuild
# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.040
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/gdal.pm view on Meta::CPAN
}
sub version {
my $self = shift;
my $version = $self->SUPER::version;
return $version if not $version =~ /CONFIG/;
# we have a busted version on Windows due to PkgConfig not handling pc vars
# system installs are on their own for now
lib/Alien/gdal.pm view on Meta::CPAN
#warn 'LD Path is: ' . join ' ', grep {defined} @LD_LIBRARY_PATH;
#warn 'Bare env var: ' . ($ENV{LD_LIBRARY_PATH} // '');
#warn 'DYLD Path is: ' . join ' ', grep {defined} @DYLD_LIBRARY_PATH;
#warn 'Bare env var: ' . ($ENV{DYLD_LIBRARY_PATH} // '');
my (@libs) = $self->SUPER::dynamic_libs;
foreach my $alien (@have_aliens) {
push @libs, $alien->dynamic_libs;
}
my (%seen, @libs2);
lib/Alien/gdal.pm view on Meta::CPAN
}
sub cflags {
my $self = shift;
my $cflags = $self->SUPER::cflags;
if ($have_geos) {
$cflags .= ' ' . (Alien::geos::af->cflags // '');
}
lib/Alien/gdal.pm view on Meta::CPAN
}
sub libs {
my $self = shift;
my $cflags = $self->SUPER::libs;
if ($have_geos) {
$cflags .= ' ' . (Alien::geos::af->libs // '');
}
lib/Alien/gdal.pm view on Meta::CPAN
}
#sub cflags_static {
# my $self = shift;
#
# my $cflags = $self->SUPER::cflags_static;
#
# if ($have_geos) {
# $cflags .= ' ' . Alien::geos::af->cflags_static;
# }
#
lib/Alien/gdal.pm view on Meta::CPAN
#}
#
#sub libs_static {
# my $self = shift;
#
# my $cflags = $self->SUPER::libs_static;
#
# if ($have_geos) {
# $cflags .= ' ' . Alien::geos::af->libs_static;
# }
#
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alien/geos/af.pm view on Meta::CPAN
my $dynamic = Path::Tiny->new($class->dist_dir, 'dynamic');
if (-d $dynamic) {
$dir = $dynamic;
}
my @libs = $class->SUPER::dynamic_libs;
push @libs, FFI::CheckLib::find_lib(
lib => ['geos', 'geos_c'],
libpath => $dir,
systempath => [],
lib/Alien/geos/af.pm view on Meta::CPAN
}
}
sub cflags {
my ($self) = @_;
$self->SUPER::cflags;
}
1;
__END__
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
},
));
sub MY::install {
my ($mm, @rest) = @_;
my $section = do { package MY; $mm->SUPER::install(@rest) };
return ".NOTPARALLEL :\n\n.NO_PARALLEL :\n\ninstall :: alien_ghostty_clean_install\n\n$section";
}
sub MY::postamble {
$abmm->mm_postamble . <<'MAKE';
view all matches for this distribution
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
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
view release on metacpan or search on metacpan
lib/Alien/gputils.pm view on Meta::CPAN
my $self = shift;
if ($self->install_type('system')) {
my ($path) = $self->config('gputils_system_path');
return $path if $path;
}
return $self->SUPER::bin_dir();
}
1;
__END__
view all matches for this distribution
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
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
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
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
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 postamble code inserted by Dist::Zilla::Plugin::AlienBuild
view all matches for this distribution
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
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
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
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 postamble code inserted by Dist::Zilla::Plugin::AlienBuild
view all matches for this distribution
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
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
view release on metacpan or search on metacpan
lib/Alien/libpq.pm view on Meta::CPAN
return $libs;
}
# On macOS share installs, the dylib uses @rpath in its install_name.
# Inject -rpath so the loader can find it at runtime.
sub libs { $_[0]->_add_rpath($_[0]->SUPER::libs) }
sub libs_static { $_[0]->_add_rpath($_[0]->SUPER::libs_static) }
1;
__END__
view all matches for this distribution
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
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