Last change
on this file since 22 was
13,
checked in by peter, 19 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
|
Rev | Line | |
---|
[1] | 1 | use ExtUtils::MakeMaker; |
---|
| 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
---|
| 3 | # the contents of the Makefile that is written. |
---|
| 4 | WriteMakefile( |
---|
| 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 | }, |
---|
[3] | 12 | EXE_FILES => [qw( |
---|
| 13 | bin/mp3find |
---|
[13] | 14 | bin/mp3db |
---|
[3] | 15 | )], |
---|
[1] | 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.