summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 014dd6aa5da429aae2074591a458d7d39b48fc9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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,
        'SOAP::Lite'      => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Net-VoIP_Innovations-*' },
);