Alien-Chipmunk

 view release on metacpan or  search on metacpan

lib/Alien/Chipmunk.pm  view on Meta::CPAN

package Alien::Chipmunk;

use strict;
use warnings;
use parent qw(Alien::Base);

our $VERSION = '0.001002';
$VERSION = eval $VERSION;

1;

__END__

=head1 NAME

Alien::Chipmunk - Alien package for the Chipmunk Physics library

=head1 SYNOPSIS

    use Module::Build;
    use Alien::Chipmunk;

    my $alien = Alien::Chipmunk->new;

    my $builder = Module::Build->new(
        module_name => 'Some::Library::Chipmunk',
        # ...
        configure_requires => {
            'Alien::Chipmunk' => 0,
            # ...
        },
        build_requires => {
            'Alien::Chipmunk' => 0
            # ...
        },
        extra_compiler_flags => $alien->cflags,
        extra_linker_flags   => $alien->libs,
    );

    $builder->create_build_script();

=head1 DESCRIPTION

L<Alien::Chipmunk> installs and downloads the Chipmunk Physics library.

=head1 SEE ALSO

=over

=item *

L<Alien>

=item *

L<Alien::Base>

=item *

L<Chipmunk>

=back

=head1 AUTHORS

Jeffrey T. Palmer E<lt>jtpalmer@cpan.orgE<gt>

Graham Ollis E<lt>plicease@cpan.orgE<gt>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by Jeffrey T. Palmer.

This is free software, licensed under:

  The MIT (X11) License

=cut



( run in 1.062 second using v1.01-cache-2.11-cpan-fa01517f264 )