CVS Id.
[ZOOM-Perl-moved-to-github.git] / Makefile.PL
1 # $Id: Makefile.PL,v 1.4 2005-10-11 11:35:47 mike Exp $
2
3 use 5.008;
4 use ExtUtils::MakeMaker;
5 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
6 # the contents of the Makefile that is written.
7 WriteMakefile(
8     NAME              => 'Net::Z3950::ZOOM',
9     VERSION_FROM      => 'lib/Net/Z3950/ZOOM.pm', # finds $VERSION
10     PREREQ_PM         => {}, # e.g., Module::Name => 1.1
11     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
12       (ABSTRACT_FROM  => 'lib/Net/Z3950/ZOOM.pm', # retrieve abstract from module
13        AUTHOR         => 'Mike Taylor <mike@>') : ()),
14     LIBS              => ['-lyaz -lxml2 '], # e.g., '-lm'
15     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
16         # Insert -I. if you add *.h files later:
17     INC               => '', # e.g., '-I/usr/include/other'
18         # Un-comment this if you add C files to link with later:
19     # OBJECT            => '$(O_FILES)', # link all the C files too
20 );