1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'Graphics::GnuplotIF',
7    AUTHOR              => 'Dr.-Ing. Fritz Mehner <mehner.fritz@web.de>',
8    VERSION_FROM        => 'lib/Graphics/GnuplotIF.pm',
9    ABSTRACT_FROM       => 'lib/Graphics/GnuplotIF.pm',
10    PL_FILES            => {},
11    PREREQ_PM => {
12        'Test::More' => 0,
13        'version'    => 0,
14    },
15    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16    clean               => { FILES => 'Graphics-GnuplotIF-*' },
17);
18