]> src.twobees.de Git - Netio230B.git/blob - Makefile.PL
initial
[Netio230B.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME                => 'Netio230B',
8     AUTHOR              => q{Tobias Maier <diespambox@gmx.net>},
9     VERSION_FROM        => 'lib/Netio230B.pm',
10     ABSTRACT_FROM       => 'lib/Netio230B.pm',
11     ($ExtUtils::MakeMaker::VERSION >= 6.3002
12       ? ('LICENSE'=> 'bsd')
13       : ()),
14     PL_FILES            => {},
15     PREREQ_PM => {
16         'Test::More' => 0,
17     },
18     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
19     clean               => { FILES => 'Netio230B-*' },
20 );