initial commit
[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         'XML::Simple'     => 0,
14         'XML::Writer'     => 0,
15         'Net::HTTPS::Any' => 0.10
16     },
17     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
18     clean               => { FILES => 'Net-VoIP_Innovations-*' },
19 );