Add MP4 support
[app-musicexpo.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::MusicExpo',
6 VERSION_FROM => 'lib/App/MusicExpo.pm',
7 ABSTRACT_FROM => 'lib/App/MusicExpo.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => [ 'musicexpo' ],
10 MIN_PERL_VERSION => 5.014,
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Audio::FLAC::Header 0
15 HTML::Template::Compiled 0
16 Memoize 0
17 MP3::Tag 1.12
18 MP4::Info 0
19 JSON::MaybeXS 0
20 DB_File 0
21 Ogg::Vorbis::Header::PurePerl 0/,
22 },
23 META_MERGE => {
24 dynamic_config => 0,
25 resources => {
26 repository => 'http://git.ieval.ro/?p=app-musicexpo.git'
27 },
28 }
29 );
This page took 0.021516 seconds and 4 git commands to generate.