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::libtool; use strict; use warnings; use 5.008001; use base qw( Alien::Base ); # ABSTRACT: Build or find libtool our $VERSION = '0.15'; # VERSION my %helper; foreach my $command (qw( libtool libtoolize )) { 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::libtool - Build or find libtool =head1 VERSION version 0.15 =head1 SYNOPSIS In your script or module: use Alien::libtool; use Env qw( @PATH ); unshift @PATH, Alien::libtool->bin_dir; =head1 DESCRIPTION This distribution provides libtool 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 libtool 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 SEE ALSO L, L, L =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 libtool =item libtoolize =back =head1 AUTHOR Author: Graham Ollis Eplicease@cpan.orgE Contributors: Zaki Mughal (zmughal, sivoais) Chase Whitener (genio, CAPOEIRAB) =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