boilerplate m-s
[Net-Indosoft-QSuite.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings FATAL => 'all';
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME             => 'Net::Indosoft::QSuite',
8     AUTHOR           => q{Ivan Kohler <ivan-indosoft at freeside.biz>},
9     VERSION_FROM     => 'lib/Net/Indosoft/QSuite.pm',
10     ABSTRACT_FROM    => 'lib/Net/Indosoft/QSuite.pm',
11     LICENSE          => 'Artistic_2_0',
12     PL_FILES         => {},
13     MIN_PERL_VERSION => 5.006,
14     CONFIGURE_REQUIRES => {
15         'ExtUtils::MakeMaker' => 0,
16     },
17     BUILD_REQUIRES => {
18         'Test::More' => 0,
19     },
20     PREREQ_PM => {
21         #'ABC'              => 1.6,
22         #'Foo::Bar::Module' => 5.0401,
23     },
24     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
25     clean => { FILES => 'Net-Indosoft-QSuite-*' },
26 );