You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
683 B
Perl
23 lines
683 B
Perl
use strict;
|
|
use warnings;
|
|
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => 'MP3::Tag::Utils',
|
|
AUTHOR => q{Zane C. Bowers <vvelox@vvelox.net>},
|
|
VERSION_FROM => 'lib/MP3/Tag/Utils.pm',
|
|
ABSTRACT_FROM => 'lib/MP3/Tag/Utils.pm',
|
|
($ExtUtils::MakeMaker::VERSION >= 6.3002
|
|
? ('LICENSE'=> 'perl')
|
|
: ()),
|
|
PL_FILES => {},
|
|
INST_SCRIPT => 'bin',
|
|
PREREQ_PM => {
|
|
'Test::More' => 0,
|
|
'MP3::Tag'=>0,
|
|
'Text::NeatTemplate'=>0,
|
|
},
|
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
|
clean => { FILES => 'MP3-Tag-Utils-*' },
|
|
);
|