initial import
[Net-Indosoft-Voicebridge.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Net::Indosoft::Voicebridge',
7     AUTHOR              => 'Ivan Kohler <ivan-voicebridge@freeside.biz>',
8     VERSION_FROM        => 'lib/Net/Indosoft/Voicebridge.pm',
9     ABSTRACT_FROM       => 'lib/Net/Indosoft/Voicebridge.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More' => 0,
13         'SOAP::Lite' => 0,
14     },
15     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16     clean               => { FILES => 'Net-Indosoft-Voicebridge-*' },
17 );