-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
54 lines (45 loc) · 1.34 KB
/
Makefile.PL
File metadata and controls
54 lines (45 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/perl -w # -*- perl -*-
use strict;
use warnings;
use 5.010;
use lib qw( . ./lib );
use Config;
use File::Spec::Functions qw( catfile );
use ExtUtils::MakeMaker;
use Cwd;
select STDERR;
$| = 1;
select STDOUT;
our $QUIET = 0;
our $ACCEPT = 0;
our $WIN32 = ($^O eq 'MSWin32');
my %opts = (
'NAME' => 'Template-Plugin-Latex',
'VERSION_FROM' => 'lib/Template/Plugin/Latex.pm',
'MIN_PERL_VERSION' => '5.010',
'PMLIBDIRS' => [ 'lib' ],
'PREREQ_PM' => {
'Template' => 2.16,
'LaTeX::Driver' => 0.07,
'LaTeX::Encode' => 0.02,
'LaTeX::Table' => 0,
},
'dist' => {
'COMPRESS' => 'gzip',
'SUFFIX' => 'gz',
},
'clean' => {
'FILES' => join(' ', qw( t/output/test1.pdf
t/output/test1.ps
t/output/test1.dvi
t/output/test2
t/output/test2.pdf
t/output/test2.ps
t/output/test2.dvi )),
},
);
if ($ExtUtils::MakeMaker::VERSION >= 5.43) {
$opts{ AUTHOR } = 'Andrew Ford <a.ford@ford-mason.co.uk>';
$opts{ ABSTRACT } = 'Latex support for the Template Toolkit',
}
WriteMakefile(%opts);