Initial commit
[audio-libsamplerate.git] / Makefile.PL
CommitLineData
27013d8f
MG
1use 5.008009;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
5 NAME => 'Audio::LibSampleRate',
6 VERSION_FROM => 'lib/Audio/LibSampleRate.pm',
7 ABSTRACT_FROM => 'lib/Audio/LibSampleRate.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.8.9',
10 LICENSE => 'gpl',
11 SIGN => 1,
12 PREREQ_PM => {},
13 LIBS => ['-lsamplerate'],
14 INC => '-I.',
15 META_ADD => {
16 dynamic_config => 0,
17 resources => {
18 repository => 'https://git.ieval.ro/?p=audio-libsamplerate.git',
19 },
20 }
21);
This page took 0.009483 seconds and 4 git commands to generate.