X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=perl%2FMakefile.PL.in;fp=perl%2FMakefile.PL.in;h=0000000000000000000000000000000000000000;hp=8d4eae166cc0b86d9cf110b00975b09d4d0d839b;hb=09563d8acae53c6479d853e35e3bd53991e880c7;hpb=f2f159d942dae64203f266941c76bc487e33714e diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in deleted file mode 100644 index 8d4eae1..0000000 --- a/perl/Makefile.PL.in +++ /dev/null @@ -1,25 +0,0 @@ -use ExtUtils::MakeMaker; - -my $libs = `../idzebra-config --libs`; -my $flags = `../idzebra-config --cflags`; -WriteMakefile( - 'NAME' => 'IDZebra', - 'OBJECT' => 'IDZebra_wrap.o zebra_perl.o' , - 'INC' => $flags, - 'LIBS' => [$libs], - 'OPTIMIZE' => '-g', -# 'PREREQ_FATAL' => 1, - 'PREREQ_PM' => { - 'Scalar::Util' => '1.0', - 'Test::More' => '0.40', - } - - ); - -sub MY::postamble { -'IDZebra_wrap.c: IDZebra.i - ./doswig' - ; -} - -