summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 1d536a04faf7997130154b7075c0b22769878e3c (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::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-*' },
);