-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·32 lines (27 loc) · 2.04 KB
/
Makefile.PL
File metadata and controls
executable file
·32 lines (27 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This -*- perl -*- script writes the Makefile for UMLS::Interface
# (Last Updated 08/09/2004 -- Sid)
#
# Generates the Makefile for the UMLS::Interface 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 <[email protected]>';
my $author3 = 'Serguei Pakhomov <[email protected]>';
my $author2 = 'Ted Pedersen <[email protected]>';
my $author1 = 'Bridget McInnes <[email protected]>';
WriteMakefile(
'NAME' => 'UMLS::Interface',
'VERSION_FROM' => 'lib/UMLS/Interface.pm',
'PREREQ_PM' => {'DBI' => '0',
'DBD::mysql' => '0',
'Digest::SHA1' => '2.12',
'File::Spec' => '3.31',
'File::Path' => '2.08'},
'EXE_FILES' => [("utils/getSAB.pl", "utils/getDUI.pl", "utils/removeConfigData.pl", "utils/findAncestors.pl", "utils/findLeastCommonSubsumer.pl", "utils/findPathToRoot.pl", "utils/findShortestPath.pl", "utils/getChildren.pl", "utils/getParents.pl", "utils/getCuiDef.pl", "utils/getExtendedDef.pl", "utils/getRelated.pl", "utils/getRelations.pl", "utils/getStDef.pl", "utils/getAssociatedTerms.pl", "utils/getAssociatedCuis.pl", "utils/findCuiDepth.pl", "utils/getSts.pl","utils/getSemanticGroup.pl", "utils/getSemanticRelation.pl", "utils/findDFS.pl", "utils/getTableNames.pl", "utils/getCuiList.pl", "utils/getIC.pl", "utils/getIntrinsicIC.pl", "utils/getStString.pl", "utils/findShortestPathLength.pl", "utils/getCompounds.pl", "utils/findNumberOfCloserConcepts.pl", "utils/findNumberTurns.pl")],
'dist' => {'COMPRESS' => 'gzip -9f', 'SUFFIX' => 'gz'},
($] >= 5.005 ?
('ABSTRACT_FROM' => 'lib/UMLS/Interface.pm', # retrieve abstract from module
'AUTHOR' => "$author1, $author2, $author3, $author4") : ()));