-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·29 lines (28 loc) · 1.01 KB
/
Makefile.PL
File metadata and controls
executable file
·29 lines (28 loc) · 1.01 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
#======================================================================
# Makefile Maker for LaTeXML::MathSyntax
# christoph.alt@fau.de
#======================================================================
use ExtUtils::MakeMaker;
use strict;
use warnings;
#======================================================================
# Use "perl Makefile.PL <options>"
#======================================================================
WriteMakefile(
NAME => 'LaTeXML::Plugin::iTeX2MML',
AUTHOR => 'Christoph Alt <christph.alt@fau.de>',
ABSTRACT => "A LaTeXML extension for support the iTex commands",
VERSION => "0.1",
PREREQ_PM => {
'LaTeXML'=>'0.8.3',
},
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/MathWebSearch/LaTeXML-plugin-iTeX2MML.git',
web => 'https://github.com/MathWebSearch/LaTeXML-plugin-iTeX2MML',
}}})
: ()),
);