Alien-RtMidi

 view release on metacpan or  search on metacpan

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

use strict;
use warnings;
package Alien::RtMidi;

# ABSTRACT: Install RtMidi

our $VERSION = '0.12';

use parent qw/ Alien::Base /;








1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Alien::RtMidi - Install RtMidi

=head1 VERSION

version 0.12

=head1 SYNOPSIS

In your Makefile.PL:

 use ExtUtils::MakeMaker;
 use Alien::Base::Wrapper ();

 WriteMakefile(
   Alien::Base::Wrapper->new('Alien::RtMidi')->mm_args2(
     # MakeMaker args
     NAME => 'My::XS',
     ...
   ),
 );

In your Build.PL:

 use Module::Build;
 use Alien::Base::Wrapper qw( Alien::RtMidi !export );

 my $builder = Module::Build->new(
   ...
   configure_requires => {
     'Alien::RtMidi' => '0',
     ...
   },
   Alien::Base::Wrapper->mb_args,
   ...
 );

 $build->create_build_script;

In your L<FFI::Platypus> script or module:

 use FFI::Platypus;
 use Alien::RtMidi;



( run in 1.536 second using v1.01-cache-2.11-cpan-4991d5b9bd9 )