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