diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-12-12 16:31:06 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-12-12 16:31:06 -0800 |
commit | 1d339ad33855e8df8c1f466b494acbfd0e0907da (patch) | |
tree | a4a609605840d1ebf666e651efd41663d8f7da83 /Makefile.PL |
initial commit
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..74049bb --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,19 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Net::VoIP_Innovations', + AUTHOR => 'Ivan Kohler <ivan-net-voipinnovations@freeside.biz>', + VERSION_FROM => 'lib/Net/VoIP_Innovations.pm', + ABSTRACT_FROM => 'lib/Net/VoIP_Innovations.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'XML::Simple' => 0, + 'XML::Writer' => 0, + 'Net::HTTPS::Any' => 0.10 + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Net-VoIP_Innovations-*' }, +); |