-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·29 lines (28 loc) · 1.04 KB
/
Makefile.PL
File metadata and controls
executable file
·29 lines (28 loc) · 1.04 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
# d.ginev@jacobs-university.de
#======================================================================
use ExtUtils::MakeMaker;
use strict;
use warnings;
#======================================================================
# Use "perl Makefile.PL <options>"
#======================================================================
WriteMakefile(
NAME => 'LaTeXML::Plugin::MathWebSearch',
AUTHOR => 'Deyan Ginev <d.ginev@jacobs-university.de>',
ABSTRACT => "A LaTeXML extension for generatiing MathWebSearch queries from TeX",
VERSION => "0.2",
PREREQ_PM => {
'LaTeXML'=>'0.8.4',
},
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/KWARC/LaTeXML-Plugin-MathWebSearch.git',
web => 'https://github.com/KWARC/LaTeXML-Plugin-MathWebSearch',
}}})
: ()),
);