Reindent MusicExpo.pm
[app-musicexpo.git] / Makefile.PL
1 use 5.014;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
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 'Ogg::Vorbis::Header::PurePerl' => 0,
14 },
15 MIN_PERL_VERSION => 5.014,
16 SIGN => 1,
17 EXE_FILES => [ 'musicexpo' ],
18 LICENSE => 'perl',
19 ABSTRACT_FROM => 'lib/App/MusicExpo.pm',
20 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
21 META_MERGE => {
22 resources => {
23 repository => 'http://git.ieval.ro/?p=app-musicexpo.git'
24 },
25 dynamic_config => 0,
26 }
27 );
This page took 0.02168 seconds and 4 git commands to generate.