initial version appears to be hooked up and working against dev sandbox
[Net-VoIP_Innovations.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Net::VoIP_Innovations',
7     AUTHOR              => 'Ivan Kohler <ivan-net-voipinnovations@freeside.biz>',
8     VERSION_FROM        => 'lib/Net/VoIP_Innovations.pm',
9     ABSTRACT_FROM       => 'lib/Net/VoIP_Innovations.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More'      => 0,
13         'Data::Dumper'    => 0,
14         'SOAP::Lite'      => 0,
15     },
16     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17     clean               => { FILES => 'Net-VoIP_Innovations-*' },
18 );