The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Alien::Install::Example::Libfoo::Installer - Example installer for libfoo

VERSION

version 0.08_06

SYNOPSIS

Build.PL

 # as an optional dep
 use Alien::Install::Example::Libfoo::Installer;
 use Module::Build;
 
 my %build_args;
 
 my $installer = eval { Alien::Install::Example::Libfoo::Installer };
 if($installer)
 {
   $build_args{extra_compiler_flags} = $installer->cflags;
   $build_args{extra_linker_flags}   = $installer->libs;
 }
 
 my $build = Module::Build->new(%build_args);
 $build->create_build_script;

DESCRIPTION

This module provides an example installer for libfoo. It is used in testing Alien::Install.

SEE ALSO

Alien::Install

AUTHOR

Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 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.