source: mp3-find/trunk/Makefile.PL @ 1

Last change on this file since 1 was 1, checked in by peter, 18 years ago

Initial import

File size: 576 bytes
Line 
1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    NAME              => 'MP3::Find',
6    VERSION_FROM      => 'lib/MP3/Find.pm',
7    PREREQ_PM         => { 
8        'MP3::Info'    => 0, 
9        'File::Find'   => 0,
10        'Scalar::Util' => 0,
11    },
12    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
13      (ABSTRACT_FROM  => 'lib/MP3/Find.pm', # retrieve abstract from module
14       AUTHOR         => 'Peter Eichman <peichamn@cpan.org>') : ()),
15);
Note: See TracBrowser for help on using the repository browser.