X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=Makefile.PL;h=e47de2012029f1a0ebd5b5f55672a235ce2347e5;hb=598a92c5fd17bb4e57ad3ab108c8fb394fae0c90;hp=274861719bd8eae8da8702e780f8659d9b1351bf;hpb=21cd9240d572994ade62bed83cabba9e0c53e4c1;p=app-musicexpo.git diff --git a/Makefile.PL b/Makefile.PL index 2748617..e47de20 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,20 +2,26 @@ use 5.014; use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'App::MusicExpo', - VERSION => '0.001001', - PREREQ_PM => { - 'Audio::FLAC::Header' => 0, - 'HTML::Entities' => 0, - 'HTML::Template::Compiled' => 0, - 'Memoize' => 0, - 'MP3::Tag' => 0, - 'URI::Escape' => 0, - 'DB_File' => 0, + NAME => 'App::MusicExpo', + VERSION_FROM => 'lib/App/MusicExpo.pm', + PREREQ_PM => { + 'Audio::FLAC::Header' => 0, + 'HTML::Template::Compiled' => 0, + 'Memoize' => 0, + 'MP3::Tag' => 1.12, + 'DB_File' => 0, + 'Ogg::Vorbis::Header::PurePerl' => 0, + }, + MIN_PERL_VERSION => 5.014, + SIGN => 1, + EXE_FILES => [ 'musicexpo' ], + LICENSE => 'perl', + ABSTRACT_FROM => 'lib/App/MusicExpo.pm', + AUTHOR => 'Marius Gavrilescu ', + META_MERGE => { + resources => { + repository => 'http://git.ieval.ro/?p=app-musicexpo.git' }, - MIN_PERL_VERSION => 5.014, - EXE_FILES => [ 'musicexpo' ], - LICENSE => 'perl', - ABSTRACT_FROM => 'lib/App/MusicExpo.pm', - AUTHOR => 'Marius Gavrilescu ', + dynamic_config => 0, + } );