timeseries/Makefile.PL

14 lines
436 B
Perl

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'TimeSeries',
'VERSION_FROM' => 'TimeSeries.pm', # finds $VERSION
'PREREQ_PM' => {
'File::Temp' => 0,
'Time::Local' => 0,
'Data::Dumper' => 0,
},
'EXE_FILES' => [ 'tsplot', 'tsplotv', 'tsplotsql', 'tsplotvsql', 'top_n', 'tsfilter' ],
);