/itexToMML

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/itexToMML/

« back to all changes in this revision

Viewing changes to itex-src/perl/Makefile.PL

  • Committer: Jacques Distler
  • Date: 2019-01-03 19:26:23 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20190103192623-k4p7dta8r62qwyr2
Perl bindings

Show diffs side-by-side

added added

removed removed

 
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