Update Makefile.PL
[app-musicexpo.git] / Makefile.PL
CommitLineData
21cd9240
MG
1use 5.014;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
0faf07b9
MG
5 NAME => 'App::MusicExpo',
6 VERSION_FROM => 'lib/App/MusicExpo.pm',
7 PREREQ_PM => {
8 'Audio::FLAC::Header' => 0,
9 'HTML::Template::Compiled' => 0,
10 'Memoize' => 0,
11 'MP3::Tag' => 1.12,
12 'DB_File' => 0,
13 },
14 MIN_PERL_VERSION => 5.014,
15 EXE_FILES => [ 'musicexpo' ],
16 LICENSE => 'perl',
17 ABSTRACT_FROM => 'lib/App/MusicExpo.pm',
18 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
21cd9240 19);
This page took 0.010978 seconds and 4 git commands to generate.