Alien-SunVox
view release on metacpan or search on metacpan
lib/Alien/SunVox.pm view on Meta::CPAN
use strict;
use warnings;
package Alien::SunVox;
# ABSTRACT: Install The SunVox Library - Alexander Zolotov's SunVox modular synthesizer and sequencer
our $VERSION = '0.03';
use parent qw/ Alien::Base /;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Alien::SunVox - Install The SunVox Library - Alexander Zolotov's SunVox modular synthesizer and sequencer
=head1 VERSION
version 0.03
=head1 SYNOPSIS
In your Makefile.PL:
use ExtUtils::MakeMaker;
use Alien::Base::Wrapper ();
WriteMakefile(
Alien::Base::Wrapper->new('Alien::SunVox')->mm_args2(
# MakeMaker args
NAME => 'My::XS',
...
),
);
In your Build.PL:
use Module::Build;
use Alien::Base::Wrapper qw( Alien::SunVox !export );
my $builder = Module::Build->new(
...
configure_requires => {
'Alien::SunVox' => '0',
...
},
Alien::Base::Wrapper->mb_args,
...
);
$build->create_build_script;
In your L<FFI::Platypus> script or module:
use FFI::Platypus;
( run in 0.535 second using v1.01-cache-2.11-cpan-e1769b4cff6 )