File: Makefile.PL

package info (click to toggle)
libchart-gnuplot-perl 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 948 kB
  • ctags: 111
  • sloc: perl: 4,862; makefile: 113
file content (20 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use ExtUtils::MakeMaker;

WriteMakefile(
	AUTHOR        => 'Ka-Wai Mak',
	NAME          => 'Chart::Gnuplot',
	VERSION_FROM  => 'lib/Chart/Gnuplot.pm',
	ABSTRACT_FROM => "lib/Chart/Gnuplot.pm",
	PREREQ_PM     => {
        Carp       => 1.04,
        File::Copy => 2.08,
        File::Temp => 0.14,
        Storable   => 2.15,
    },
	dist          => {
		SUFFIX   => '.gz',
		COMPRESS => 'gzip -f'
	},

    ($ExtUtils::MakeMaker::VERSION > 6.48)? (LICENSE => "perl"): (),
);