summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 358637fca157a693cde2a569e8b2fc8577a9f79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Net::Ikano',
    AUTHOR              => 'Erik Levinson <levinse@freeside.biz>',
    VERSION_FROM        => 'lib/Net/Ikano.pm',
    ABSTRACT_FROM       => 'lib/Net/Ikano.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Net-Ikano-*' },
);