# This -*- perl -*- script writes the Makefile for UMLS::Similarity # (Last Updated 08/09/2004 -- Sid) # # Generates the Makefile for the UMLS::Similarity Perl modules. # # ---------------------------------------------------------------------- use 5.005; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. my $author4 = 'Siddharth Patwardhan '; my $author3 = 'Serguei Pakhomov '; my $author2 = 'Ted Pedersen '; my $author1 = 'Bridget McInnes '; WriteMakefile( 'NAME' => 'UMLS::Similarity', 'VERSION_FROM' => 'lib/UMLS/Similarity.pm', 'PREREQ_PM' => {'UMLS::Interface' => '0.21'}, 'EXE_FILES' => [("utils/umls-similarity.pl")], 'dist' => {'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz'}, ($] >= 5.005 ? ('ABSTRACT_FROM' => 'lib/UMLS/Similarity.pm', # retrieve abstract from module 'AUTHOR' => "$author1, $author2, $author3, $author4") : ()));