bzr branch
http://golem.ph.utexas.edu/~distler/code/itexToMML/
|
82
by Jacques Distler
Perl bindings |
1 |
# File : Makefile.PL |
2 |
use ExtUtils::MakeMaker; |
|
3 |
WriteMakefile( |
|
4 |
'NAME' => 'MathML::itex2MML', # Name of package |
|
5 |
'VERSION_FROM' => 'lib/MathML/itex2MML.pm', # finds $VERSION |
|
6 |
'AUTHOR' => 'Jacques Distler (distler@golem.ph.utexas.edu)', |
|
7 |
'LICENSE' => 'perl_5', |
|
8 |
'ABSTRACT' => 'Convert itex equations to MathML', |
|
9 |
'PREREQ_PM' => {
|
|
10 |
'Test::Simple' => '>= 0.44' |
|
11 |
}, |
|
12 |
'test' => {TESTS => 't/*.t'},
|
|
13 |
'LIBS' => [], # Name of custom libraries |
|
14 |
'DEFINE' => '-Ditex2MML_CAPTURE', |
|
15 |
'OBJECT' => 'y.tab.o lex.yy.o itex2MML_perl.o' # Object files |
|
16 |
); |
|
17 |