source: mp3-find/trunk/Makefile.PL

Last change on this file was 13, checked in by peter, 18 years ago
  • added mp3db to EXE_FILES in Makefile.PL
  • added "sync_db" method to DB.pm; removes outdated records from the database
  • increased version number to '0.03' in Find.pm
File size: 648 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    EXE_FILES => [qw(
13        bin/mp3find
14        bin/mp3db
15    )],   
16    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
17      (ABSTRACT_FROM  => 'lib/MP3/Find.pm', # retrieve abstract from module
18       AUTHOR         => 'Peter Eichman <peichamn@cpan.org>') : ()),
19);
Note: See TracBrowser for help on using the repository browser.