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::caca - Alien package for the Colored ASCII Art library

VERSION

version 0.0.3

SYNOPSIS

In your Build.PL:

    use Module::Build;
    use Alien::caca;
    my $builder = Module::Build->new(
        ...
        configure_requires => {
            'Alien::caca' => '0',
            ...
        },
        extra_compiler_flags => Alien::caca->cflags,
        extra_linker_flags   => Alien::caca->libs,
        ...
    );
 
    $build->create_build_script;

In your Makefile.PL:

    use ExtUtils::MakeMaker;
    use Config;
    use Alien::caca;
    
    WriteMakefile(
    ...
    CONFIGURE_REQUIRES => {
        'Alien::caca' => '0',
    },
    CCFLAGS => Alien::caca->cflags . " $Config{ccflags}",
    LIBS    => [ Alien::caca->libs ],
    ...
    );

DESCRIPTION

This distribution installs libcaca so that it can be used by other Perl distributions. Mostly Term::Caca.

AUTHOR

Yanick Champoux <yanick@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Yanick Champoux.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.