File: Makefile.PL

package info (click to toggle)
libgraphics-gnuplotif-perl 1.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: perl: 441; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (3)
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                => 'Graphics::GnuplotIF',
    AUTHOR              => 'Dr.-Ing. Fritz Mehner <mehner.fritz@web.de>',
    VERSION_FROM        => 'lib/Graphics/GnuplotIF.pm',
    ABSTRACT_FROM       => 'lib/Graphics/GnuplotIF.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'version'    => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Graphics-GnuplotIF-*' },
);