/itexToMML

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