Add missing close-quote.
[idzebra-moved-to-github.git] / perl / Makefile.PL.in
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4               'NAME'          => 'IDZebra',
5               'OBJECT'        => 'IDZebra_wrap.o zebra_perl.o' ,
6               'INC'           => "-I@top_srcdir@/index -I../include @YAZINC@",
7               'LIBS'          => "-L@top_srcdir@/index -lzebra @TCL_LIB@ @YAZLIB@ @ZPERL_LIBS@",
8               'OPTIMIZE'      => '-g',
9 #              'PREREQ_FATAL'  => 1,
10               'PREREQ_PM'     => {
11                   'Scalar::Util' => '1.0',
12                   'Test::More'   => '0.40',
13               }
14         
15               );
16
17 sub MY::postamble {
18 'IDZebra_wrap.c: IDZebra.i
19         ./doswig'
20         ;
21 }
22
23