forked from Template-Toolkit-Latex/LaTeX-Encode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
41 lines (38 loc) · 1.22 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
37
38
39
40
# $Id: Makefile.PL 30 2012-09-25 20:24:40Z andrew $
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'LaTeX::Encode',
AUTHOR => 'Chris Travers <chris@efficito.com>',
VERSION_FROM => 'lib/LaTeX/Encode.pm',
ABSTRACT_FROM => 'lib/LaTeX/Encode.pm',
PL_FILES => {},
EXE_FILES => [ 'scripts/latex-encode' ],
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
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-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/einhverfr/LaTeX-Encode.git',
web => 'https://github.com/einhverfr/LaTeX-Encode',
},
},
},
);