diff options
| author | ivan <ivan> | 2009-02-26 15:28:31 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2009-02-26 15:28:31 +0000 |
| commit | 57134b4a18772b114a5559a1f19d033b01291f62 (patch) | |
| tree | 0bc13709bb99f3b10d4589c383fba37852cfb737 /Makefile.PL | |
Diffstat (limited to 'Makefile.PL')
| -rw-r--r-- | Makefile.PL | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..1d536a0 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,17 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Net::Indosoft::Voicebridge', + AUTHOR => 'Ivan Kohler <ivan-voicebridge@freeside.biz>', + VERSION_FROM => 'lib/Net/Indosoft/Voicebridge.pm', + ABSTRACT_FROM => 'lib/Net/Indosoft/Voicebridge.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'SOAP::Lite' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Net-Indosoft-Voicebridge-*' }, +); |
