-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
36 lines (32 loc) · 1.01 KB
/
Makefile.PL
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
# $Id: Makefile.PL 30 2012-09-25 20:24:40Z andrew $
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'LaTeX::Encode',
AUTHOR => 'Andrew Ford <a.ford@ford-mason.co.uk>',
VERSION_FROM => 'lib/LaTeX/Encode.pm',
ABSTRACT_FROM => 'lib/LaTeX/Encode.pm',
PL_FILES => {},
EXE_FILES => [ 'scripts/latex-encode' ],
PREREQ_PM => {
'Getopt::Long' => 0,
'HTML::Entities' => 0,
'Pod::LaTeX' => 0,
'Pod::Usage' => 0,
'Readonly' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Carp::Always' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'LaTeX-Encode-*' },
);
no warnings 'redefine';
sub MY::postamble {
return q{
lib/LaTeX/Encode/EncodingTable.pm: scripts/build-encoding-table
scripts/build-encoding-table >lib/LaTeX/Encode/EncodingTable.pm
};
}