PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Alien::automake; use strict; use warnings; use 5.008001; use base qw( Alien::Base ); # ABSTRACT: Build or find automake our $VERSION = '0.18'; # VERSION my %helper; foreach my $command (qw( automake aclocal )) { if($^O eq 'MSWin32') { $helper{$command} = sub { qq{sh -c "$command "\$*"" --} }; } else { $helper{$command} = sub { $command }; } } sub alien_helper { return \%helper; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Alien::automake - Build or find automake =head1 VERSION version 0.18 =head1 SYNOPSIS In your script or module: use Alien::automake; use Env qw( @PATH ); unshift @PATH, Alien::automake->bin_dir; =head1 DESCRIPTION This distribution provides automake so that it can be used by other Perl distributions that are on CPAN. It does this by first trying to detect an existing install of automake on your system. If found it will use that. If it cannot be found, the source code will be downloaded from the internet and it will be installed in a private share location for the use of other modules. =head1 HELPERS This L provides the following helpers which will execute the corresponding command. You want to use the helpers because they will use the correct incantation on Windows. =over 4 =item C =item C =back =head1 CAVEATS This module is currently configured to I do a share install. This is because C installs for this alien are not reliable. Please see this issue for details: L (the issue is for autoconf, but relates to automake as well). The good news is that most of the time you shouldn't need this module I you are building another alien from source. If your system provides the package that is targeted by the upstream alien I recommend using that. If you are packaging system packages for your platform then I recommend making sure the upstream alien uses the system library so you won't need to install this module. =head1 SEE ALSO =over 4 =item L =item L =item L =item L =back =head1 AUTHOR Author: Graham Ollis Eplicease@cpan.orgE Contributors: Roy Storey (KIWIROY) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2017-2022 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut